What steps will reproduce the problem?
1. add recaptcha control in 2nd or 3rd step in asp WizardStep
2. it will give validation error when step loading
What is the expected output? What do you see instead?
no validation error, i will get validation error
What version of the product are you using? On what operating system?
i used latest version download from your svn and os will not matter for
this since its a logic error
Please provide any additional information below.
as a quick fix i change following property in recaptchaControl.cs
public bool IsValid
{
get
{
if (Page.IsPostBack && Visible && Enabled &&
!this.skipRecaptcha)
{
if (this.recaptchaResponse == null)
{
return true; // add return true
//this.Validate(); comments this
}
return this.recaptchaResponse != null &&
this.recaptchaResponse.IsValid;
}
return true;
}
set
{
throw new NotImplementedException("This setter is not
implemented.");
}
}
Original issue reported on code.google.com by isuru.sampath%ratnayake.info@gtempaccount.com on 24 Sep 2009 at 7:35
Original issue reported on code.google.com by
isuru.sampath%ratnayake.info@gtempaccount.com
on 24 Sep 2009 at 7:35