asp.net - 创建帐户后不让用户登录

标签 asp.net account

我有一个简单的创建用户向导控件,到目前为止它运行得很好。 问题是我想禁止创建用户在创建帐户后立即登录,只需将 DisableCreatedUser 属性设置为 true

但不幸的是,当我在创建帐户后尝试立即刷新页面并检查它显示用户已登录时。

如果用户直接单击登录并检查它会给我一个错误,他需要激活他的帐户。

那么当用户尝试刷新页面时如何禁用他呢?

任何帮助将不胜感激!

 <asp:UpdatePanel ID="UpdatePanel1" runat="server">
          <ContentTemplate>
           <asp:CreateUserWizard ID="CreateUserWizard1" runat="server" 
                  DisableCreatedUser="True" 
                  LoginCreatedUser="False">
            <ContinueButtonStyle BorderStyle="None" CssClass="btn big" Font-Size="12px"/>
            <CreateUserButtonStyle CssClass="btn big" Height="30px" 
                        Width="125px" BorderStyle="None" Font-Size="12px" />

            <WizardSteps>
                 <asp:CreateUserWizardStep ID="CreateUserWizardStep1" runat="server">
                  <ContentTemplate>
                  <table>
                  <tr>
                  <td align="right">
                  <asp:Label ID="UserNameLabel" runat="server" AssociatedControlID="UserName" style="z-index:2; position:relative !important;">User Name:</asp:Label>
                   </td>
                   <td>
                   <asp:TextBox ID="UserName" runat="server" BorderStyle="Solid" BorderWidth="1px" BorderColor="#0099CC" BackColor="#FAFFBD"></asp:TextBox>
                   <asp:RequiredFieldValidator ID="UserNameRequired" runat="server" 
                                              ControlToValidate="UserName" ErrorMessage="User Name is required." 
                                              ToolTip="User Name is required." ValidationGroup="CreateUserWizard1" 
                                              CssClass="signupvalidators" ForeColor="Red">*</asp:RequiredFieldValidator>
                     </td>
                     </tr>
                                  <tr>
                                      <td align="right">
                                          <asp:Label ID="PasswordLabel" runat="server" AssociatedControlID="Password" style="z-index:2; position:relative !important;">Password:</asp:Label>
                                      </td>
                                      <td>
                                          <asp:TextBox ID="Password" runat="server" TextMode="Password" BorderStyle="Solid" BorderWidth="1px" BorderColor="#0099CC" BackColor="#FAFFBD"></asp:TextBox>
                                          <asp:RequiredFieldValidator ID="PasswordRequired" runat="server" 
                                              ControlToValidate="Password" ErrorMessage="Password is required." 
                                              ToolTip="Password is required." ValidationGroup="CreateUserWizard1" 
                                              CssClass="signupvalidators" ForeColor="Red">*</asp:RequiredFieldValidator>
                                      </td>
                                  </tr>
                                  <tr>
                                      <td align="right">
                                          <asp:Label ID="ConfirmPasswordLabel" runat="server" 
                                              AssociatedControlID="ConfirmPassword" style="z-index:2; position:relative !important;">Confirm Password:</asp:Label>
                                      </td>
                                      <td>
                                          <asp:TextBox ID="ConfirmPassword" runat="server" TextMode="Password" BorderStyle="Solid" BorderWidth="1px" BorderColor="#0099CC" BackColor="#FAFFBD"></asp:TextBox>
                                          <asp:RequiredFieldValidator ID="ConfirmPasswordRequired" runat="server" 
                                              ControlToValidate="ConfirmPassword" 
                                              ErrorMessage="Confirm Password is required." 
                                              ToolTip="Confirm Password is required." 
                                              ValidationGroup="CreateUserWizard1" CssClass="signupvalidators" ForeColor="Red">*</asp:RequiredFieldValidator>
                                      </td>
                                  </tr>
                                  <tr>
                                      <td align="right">
                                          <asp:Label ID="EmailLabel" runat="server" AssociatedControlID="Email" style="z-index:2; position:relative !important;">E-mail:</asp:Label>
                                      </td>
                                      <td>
                                          <asp:TextBox ID="Email" runat="server" BorderStyle="Solid" BorderWidth="1px" BorderColor="#0099CC" BackColor="#FAFFBD"></asp:TextBox>
                                          <asp:RequiredFieldValidator ID="EmailRequired" runat="server" 
                                              ControlToValidate="Email" ErrorMessage="E-mail is required." 
                                              ToolTip="E-mail is required." ValidationGroup="CreateUserWizard1" 
                                              CssClass="signupvalidators" ForeColor="Red">*</asp:RequiredFieldValidator>
                                      </td>
                                  </tr>
                                  <tr>
                                      <td align="right">
                                          <asp:Label ID="QuestionLabel" runat="server" AssociatedControlID="Question" style="z-index:2; position:relative !important;">Security Question:</asp:Label>
                                      </td>
                                      <td>
                                          <asp:TextBox ID="Question" runat="server" BorderStyle="Solid" BorderWidth="1px" BorderColor="#0099CC" BackColor="#FAFFBD"></asp:TextBox>
                                          <asp:RequiredFieldValidator ID="QuestionRequired" runat="server" 
                                              ControlToValidate="Question" ErrorMessage="Security question is required." 
                                              ToolTip="Security question is required." 
                                              ValidationGroup="CreateUserWizard1" CssClass="signupvalidators" ForeColor="Red">*</asp:RequiredFieldValidator>
                                      </td>
                                  </tr>
                                  <tr>
                                      <td align="right">
                                          <asp:Label ID="AnswerLabel" runat="server" AssociatedControlID="Answer" style="z-index:2; position:relative !important;">Security Answer:</asp:Label>
                                      </td>
                                      <td>
                                          <asp:TextBox ID="Answer" runat="server" BorderStyle="Solid" BorderWidth="1px" BorderColor="#0099CC" BackColor="#FAFFBD"></asp:TextBox>
                                          <asp:RequiredFieldValidator ID="AnswerRequired" runat="server" 
                                              ControlToValidate="Answer" ErrorMessage="Security answer is required." 
                                              ToolTip="Security answer is required." ValidationGroup="CreateUserWizard1" 
                                              CssClass="signupvalidators" ForeColor="Red">*</asp:RequiredFieldValidator>
                                      </td>
                                  </tr>
                              <tr>
                              <td align="center" colspan="2">
                                  <asp:RegularExpressionValidator ID="UsernameLength" runat="server" 
                                      ErrorMessage="Username should be minimum 5-10 characters." 
                                      ControlToValidate="UserName" Display="Dynamic" ForeColor="Red" 
                                      ValidationExpression="^[\s\S]{5,10}$" ValidationGroup="CreateUserWizard1"></asp:RegularExpressionValidator>
                              </td>
                              </tr>
                                  <tr>
                                      <td align="center" colspan="2">
                                          <asp:CompareValidator ID="PasswordCompare" runat="server" 
                                              ControlToCompare="Password" ControlToValidate="ConfirmPassword" 
                                              Display="Dynamic" 
                                              ErrorMessage="The Password and Confirmation Password must match." 
                                              ValidationGroup="CreateUserWizard1" ForeColor="Red"></asp:CompareValidator>
                                      </td>
                                  </tr>
                                  <tr>
                                      <td align="center" colspan="2" style="color:Red;">
                                          <asp:Literal ID="ErrorMessage" runat="server" EnableViewState="False"></asp:Literal>
                                      </td>
                                  </tr>
                                  <tr>
                                  <td  align="center" colspan="2">
                                   <asp:RegularExpressionValidator ID="PasswordLength" runat="server"  Display="Dynamic"
                                              ErrorMessage="Password length minimum: 7. Non-alphanumeric characters required: 1" 
                                              ControlToValidate="Password" ValidationExpression="(?=^.{7,51}$)([A-Za-z]{1})([A-Za-z0-9!@#$%_\^\&amp;\*\-\.\?]{5,49})$" 
                                          ForeColor="Red" ValidationGroup="CreateUserWizard1"></asp:RegularExpressionValidator>
                                  </td>
                                  </tr>
                                  <tr>
                                   <td  align="center" colspan="2">
                                      <asp:RegularExpressionValidator ID="EmailValidator" runat="server" Display="Dynamic"
                                            ControlToValidate="Email"  ErrorMessage="Please enter a valid e-mail address." ValidationExpression="^[\w-]+(\.[\w-]+)*@([a-z0-9-]+(\.[a-z0-9-]+)*?\.[a-z]{2,6}|(\d{1,3}\.){3}\d{1,3})(:\d{4})?$"  ForeColor="Red" ValidationGroup="CreateUserWizard1"></asp:RegularExpressionValidator>
                                  </td> 
                                  </tr>
                              </table>

                               <asp:UpdateProgress ID="UpdateProgressUserDetails" runat="server" DisplayAfter="0">
                                        <ProgressTemplate>
                                            <div style="position: absolute; top: 215px; left:140px;">
                                                <img src="img/Loader.gif" alt="loading" /><br />
                                               <%-- <span style="font-weight: bold; font-size: large; color: #000000;">Please wait...</span>--%>
                                            </div>
                                        </ProgressTemplate>
                                    </asp:UpdateProgress>
                          </ContentTemplate>
                      </asp:CreateUserWizardStep>
                      <asp:CompleteWizardStep ID="CompleteWizardStep1" runat="server">
                      </asp:CompleteWizardStep>
                  </WizardSteps>
              </asp:CreateUserWizard>

最佳答案

设置LoginCreatedUser

来自DisableCreatedUser备注:

When DisableCreatedUser is true, you should set the LoginCreatedUser property to false so that the CreateUserWizard does not attempt to log on the new user.

来自LoginCreatedUser备注:

The LoginCreatedUser property can be set to false if you want to create a user account but not authenticate the account after it is created. This might be useful if you are an administrator creating user accounts, for example, or if there is a waiting period before users can access the Web site.

关于asp.net - 创建帐户后不让用户登录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8872358/

相关文章:

android - 添加帐户(设置)方法不启动 Activity

c# - WebRequest 和协议(protocol)无关的 URL

c# - 从 SignalR3 rc1 vnext 应用程序中调用方法时没有任何反应

c# - 当我强制从一个页面下载一个文件时,它用 SPACE/C# 分割文件名?

c# - Request.Form 提供来自动态文本框的额外值

c# - Window.Open 替换失败

ios - 无法将Apple帐户添加到Visual Studio 2017

银行账户数据库

php - 如何检查 strip 独立账户是否已验证?

java - 用户名和密码问题 : Input recognition - Java