users_register.ascx

来自「一个ASP.NET下的中文内容管理和社区系统」· ASCX 代码 · 共 32 行

ASCX
32
字号
<%@ Control %>
<%@ Register TagPrefix="community" Namespace="ASPNET.StarterKit.Communities" Assembly="ASPNET.StarterKit.Communities" %>
<span class="Form_Title">Register</span>
<p class="Form_Description">
Complete the following form to register.
</p>
<asp:Panel id="pnlInvalidUsername" Runat="Server">
  <p class="Form_Description">
  <font color="red">
  The username which you selected is already being used by
  another user. 
  <br>Please select another username.
  </font>
  </p>
</asp:Panel>


<asp:Panel id="pnlInvalidEmail" Runat="Server">
  <p class="Form_Description">
  <font color="red">
  The email address which you entered is already registered.
  <br>If you forgot your password, click 
  <a href="Core_PasswordReminder.aspx">here</a>.
  </font>
  </p>
</asp:Panel>

<community:RegisterForm id="ctlRegisterForm" Runat="Server" />

<p>
<asp:Button id="btnRegister" Text="Register" Runat="Server"/>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?