I'm doing the tutorial on Forms Authentication. The NewUserWizard is supposed to be writing the new users info to the UserProfiles table when a new user is created. This is supposed to happen when the UserCreated event is fired when a new user is created in the aspnet_Users table of the sqlmembership provider. The new user is being inserted into the aspnet_User table so the new user is being created(that part works). The solution builds with no errors. The connection string has been tested.
It seems like I am not calling the method correctly for some reason. I don't know what is wrong though. Does anyone know what I am missing?
Mark up:
<p><asp:CreateUserWizard ID="NewUserWizard" runat="server"
ContinueDestinationPageUrl="~/Membership/AdditionalUserInfo.aspx"& ...
Go to the complete details ...