Posted on: 11/22/2013 7:01:04 AM | Views : 503

I am using MSCaptcha in my asp.net web application. I have added required references as well and in web.config I have:
<httpHandlers> <add verb="GET" path="CaptchaImage.axd" type="MSCaptcha.CaptchaImageHandler, MSCaptcha"/> </httpHandlers>
I added this to aspx page
<cc:CaptchaControl ID="Captcha" runat="server" CaptchaBackgroundNoise="none" CaptchaLength="6" CaptchaHeight="50" CaptchaWidth="200" CaptchaLineNoise="Medium" CaptchaMinTimeout="5" CaptchaMaxTimeout="240" />
when I run the asp.net page, captcha is shown. I have implemented URL routing in asp.net webform using:
routes.Ignore("{resource}.axd/{*pathInfo}"); routes.MapPageRoute("City1Route", "vacancies/All" , "~/City1.aspx"); routes.MapPageRoute("City2Route", &quo ...

Go to the complete details ...