Hi Telerik team!
I'm having trouble with the RadCaptcha and I'm hoping you can show me what I'm doing wrong. I have a web garden and I have set the handler's path to "Telerik.Web.UI.WebResourceSession". When I clicked "Generate New Image" and entered the resulting code, the IsValid property is false during postback. If I use the initial image and not generate a new one, the entered code will be accepted. Below is the aspx code:
I'm having trouble with the RadCaptcha and I'm hoping you can show me what I'm doing wrong. I have a web garden and I have set the handler's path to "Telerik.Web.UI.WebResourceSession". When I clicked "Generate New Image" and entered the resulting code, the IsValid property is false during postback. If I use the initial image and not generate a new one, the entered code will be accepted. Below is the aspx code:
| <p> |
| <asp:Label runat="server" AssociatedControlID="m_captchaText" |
| style="display:block !important;font-size:smaller;color:Gray" |
| Text="This verification deters automated registrations" /> |
| <asp:TextBox ID="m_captchaText" runat="server" MaxLength="10" /> |
| </p> |
| <telerik:RadCaptcha ID="m_captcha" runat="server" |
| ProtectionMode="Captcha" EnableRefreshImage="true" |
| ImageStorageLocation="Session" MinTimeout="3" |
| ValidatedTextBoxID="m_captchaText"> |
| <CaptchaImage BackgroundColor="#DBEAF5" BackgroundNoise="Low" |
| FontWarp="Low" LineNoise="Medium" TextColor="#336699" |
| TextLength="5" UseRandomFont="true" RenderImageOnly="true" /> |
| </telerik:RadCaptcha> |
Thank you for your help.