ASP.NET CreateUserWizard 控件中是否需要有 Email 字段?

发布于 2024-12-07 05:52:00 字数 407 浏览 2 评论 0原文

我已经使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

锦爱 2024-12-14 05:52:00

您是否尝试过设置 CreateUserWizard.RequireEmail< /a> 属性设置为 false,如下所示:

<asp:CreateUserWizard ID="CreateUserWizard1" runat="server" 
    RequireEmail="false" ...

Have you tried setting the CreateUserWizard.RequireEmail property to false like so:

<asp:CreateUserWizard ID="CreateUserWizard1" runat="server" 
    RequireEmail="false" ...
你不是我要的菜∠ 2024-12-14 05:52:00

您可以将 RequireEmail 属性更改为 truefalse
您可以从 CreateUserWizard.RequireEmail 属性中找到更多信息

<asp:CreateUserWizard RequireEmail="True|False" />

You can change the RequireEmail property to true or false.
You can find more from CreateUserWizard.RequireEmail Property

<asp:CreateUserWizard RequireEmail="True|False" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文