Hi,
It seems like I have everything set up right but when I try to create new account the form is cleared and nothing happens and CreateUserWizard Just end up cleared.
I tried adding section to my code to debug and here is what it looks like My code behind but none of he events are hit. My breakpoints are not activated for any of the methods below.:
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class Register : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string xx = "";
}
protected void CreateUserWizard1_CreatingUser(object sender, LoginCancelEventArgs e)
{
string xx = "";
}
protected void Cr ...
Go to the complete details ...