CAPTCHA component

A

ad

I use form authentication mode to verify users like:
<authentication mode="Forms">
<forms name="MyCookie" loginUrl="Login.aspx" defaultUrl="Home.aspx"
protection="Validation">

and I want to use a CAPTCHA component form
http://www.codeproject.com/KB/custom-controls/CaptchaControl.aspx

But I find this component can't display the image in the login.aspx, but it
can display well in other pages like home.apsx ...

What's the problem?

I must use the CAPTCHA component in login.aspx
 
B

bruce barker

your CaptchaControl.aspx page need anonymous access (no security) or it can
not be displayed until the user has logged in (will just redirect to the
login page)

-- bruce (sqlwork.com)
 
A

ad

Thanks to your answer.
But how to make CaptchaControl.aspx anonymous access in web.config?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top