English 中文(简体)
使用FBA向CreateUserWizard控件添加列
原标题:
  • 时间:2009-01-15 17:42:09
  •  标签:

我想在我们的网站上创建一个针对未注册用户的用户帐户创建部分。我想询问与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è!!)

最佳回答

是的。您可以使用配置文件来扩展成员资格,并添加任何您喜欢的任意字段。

你可以定制CreateUserWizard,但实际上它背后只是调用Membership.CreateUser。个人而言,除非你想使用默认向导,否则我会自行编写(因为它并不是那么难)。但这更多是个人喜好。

注意:我提供的Profiles链接假设您正在使用WebSite项目。如果您使用Web应用程序项目,则可以阅读有关此处的一些额外步骤。

问题回答

暂无回答




相关问题
热门标签