Log time Cookis asp.net July 15, 2022 HttpCookie Cookie = new HttpCookie("Client"); Cookie["ID"] = ds.Tables[0].Rows[0]["UserName"].ToString(); ; Cookie.Expires=DateTime.Now.AddYears(2); Response.Cookies.Add(Cookie); Share Get link Facebook X Pinterest Email Other Apps Share Get link Facebook X Pinterest Email Other Apps Comments
Delete put code February 27, 2024 <system.webServer> <validation validateIntegratedModeConfiguration="false"/> <modules runAllManagedModulesForAllRequests="true"> <remove name="WebDAVModule"/> <!-- ADD THIS --> </modules> <handlers> <remove name="ExtensionlessUrlHandler-Integrated-4.0" /> <remove name="OPTIONSVerbHandler" /> <remove name="TRACEVerbHandler" /> <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" /> </handlers></system.webServer> Read more
WebForms UnobtrusiveValidationMode requires a ScriptResourceMapping for 'jquery'. Please add a ScriptResourceMapping named jquery(case-sensitive). April 17, 2021 WebForms UnobtrusiveValidationMode requires a ScriptResourceMapping for 'jquery'. Please add a ScriptResourceMapping named jquery(case-sensitive). Solution < appSettings > < add key = "ValidationSettings:UnobtrusiveValidationMode" value = "None" /> </ appSettings > Read more
Auto increment serial number in repeater Control July 13, 2022 <%# HiddenField1.Value = (Convert.ToInt32(HiddenField1.Value) + 1).ToString()%> Read more
Comments
Post a Comment