我想在我们的网站上创建一个针对未注册用户的用户帐户创建部分。我想询问与CreateUserWizard控件相同的问题,但有一些更改。我希望问题来自SQL中的问题查找表。用户将有一个可用问题的下拉列表,我将存储他们选择的问题ID和答案。另外,我想存储有关用户的另外一条数据(SSN)。
My questions are: 1) Is forms based authentication an acceptable solution for this if using SSL? 2) Can I add additional columns (questionid and ssn) to the membership table or another table and how do I do that so I can save the info in the blessed way? Will the solution have any negative effect if down the road I want to add password reset/recovery?
在添加列时,使用Membership.CreateUser而不是使用CreateUserWizard有意义吗?
谢谢!!(Xièxiè!!)