createuserwizard / incorporating personalisation..
ref Professional ASP.net 2.0 book page 592
I did add steps in the createuserwizard control to add additional step and textbox control to add user personal info (adress,first name......). I did modified the web.config and add properties. VSWD 2005 tell me the following errors
Error 80 'FirstName' is not a member of 'System.Web.Profile.DefaultProfile'.
How can I fix this error
note: my SQL2005 db includes the ASPNETDB.MDF tables and the createuserwizard was working fine before to add additional steps.
Also, I would like to know where this contol will save the additional info.
portion of the web.config file
<profile>
<properties>
<add name="FirstName"/>
</properties>
</profile>
note: my SQL2005 include the ASPNETDB.MDF tables and the createuserwizard was working fine before to add additional steps.
|