ASP.NET CreateUserWizard 控件中是否需要有 Email 字段?
我已经使用 ASP.NET CreateUserWizard Control
完成了注册。在这里我想使用电子邮件地址作为用户名。我在从控件中删除电子邮件字段时遇到问题。在 web.config
文件中,我使用了 requiresUniqueEmail="false"
。 我通过隐藏电子邮件字段并使用用户名自动填充该字段来实现此目的。 有一种方法此处显示 这样做。 我只是想知道是否还有其他更好的方法可以做到这一点。
谢谢
I had done the registration using ASP.NET CreateUserWizard Control
. In here I want to use email address as the username. I had problem removing Email field from the control. In the web.config
file I used requiresUniqueEmail="false"
.
I achieve this by hiding the email field and autofilled the field with username.
There is a way shown here of doing that.
I just wondering if there is any other better way of doing this.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否尝试过设置 CreateUserWizard.RequireEmail< /a> 属性设置为 false,如下所示:
Have you tried setting the CreateUserWizard.RequireEmail property to false like so:
您可以将
RequireEmail
属性更改为true
或false
。您可以从 CreateUserWizard.RequireEmail 属性中找到更多信息
You can change the
RequireEmail
property totrue
orfalse
.You can find more from CreateUserWizard.RequireEmail Property