Mon. Nov 10th, 2025

Asp.net

Web-config setting Put Below System.webserver <system.webServer> <modules runAllManagedModulesForAllRequests=”true”/> <handlers> <add name=”MSCaptcha” verb=”GET” path=”CaptchaImage.axd” type=”MSCaptcha.CaptchaImageHandler, MSCaptcha”/> </handlers> </system.webServer> Put in http handler in system.web <httpHandlers> <add verb="GET" path="CaptchaImage.axd" type="MSCaptcha.CaptchaImageHandler,... Read More
Download pager control ASPnetPagerV2_8.dll Bind Datalist: string MulRowCol = Convert.ToString(PagerV2_1.PageSize); if (Request.QueryString[“pageindex”] != null) { PagerV2_1.CurrentIndex = Convert.ToInt32(Request.QueryString[“pageindex”]); PagerV2_2.CurrentIndex = Convert.ToInt32(Request.QueryString[“pageindex”]); } MatrixRow = Convert.ToInt32(MulRowCol); PagerV2_1.Visible... Read More
Custom Error Page 1 min read
Hello Friend is the custom error page in sytem.web tag in a webconfig……. Examnple: <customErrors mode=”On” defaultRedirect=”ErrorPage.aspx”> <error statusCode=”403″ redirect=”NoAccess.htm”/> <error statusCode=”404″ redirect=”FileNotFound.htm”/> </customErrors>... Read More