hi Friend i have a problem to create user through Membership provider
I Wrote
try
{
Membership.CreateUser(txtbox1.Text, txtbox2.Text);
Response.Redirect("AHome.aspx");
}
catch (Exception ex)
{
Response.Write(ex.Message);
}
and I got
"The password-answer supplied is invalid. Exception"
Please Help Me......