indexlogin.ascx

来自「jsp实现的网上购物系统」· ASCX 代码 · 共 25 行

ASCX
25
字号
<%@ Control Language="c#" AutoEventWireup="false" Inherits="JiSuShop.Web.Skin.IndexLogin" %>

<asp:panel id="Login" Runat="server">
<table width="80%" border="0" cellspacing="0" cellpadding="0" class="Login">
  <tr>
    <td>E-MAIL地址:
      <asp:TextBox id="Name" Runat="server" Width="150px"></asp:TextBox></td>
    <td>登录密码:<asp:TextBox id="Password" Runat="server" Width="80px" TextMode="Password"></asp:TextBox></td>
    <td><asp:Button id="IndexSubmit" Runat="server" Text="登录" ></asp:Button></td>
    <td>&nbsp;
	 <A href="Register.aspx" target="_blank">注册会员</A> | 
	<A href="GetPassWord.aspx" target="_blank">忘记密码</A>	
	</td>
  </tr>
</table>
</asp:panel>
<asp:panel id="LoginSuccess" Runat="server" Visible="False">
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="Login">
  <tr>
    <td align="right">
      <asp:Literal id="UserEmail" Runat="server"></asp:Literal>您好!欢迎您的到来!<A href="MemberShip.aspx">进入会员中心</A> | 
	<asp:LinkButton id="Quit" Runat="server">退出登录</asp:LinkButton></td>
  </tr>
</table>
</asp:panel>

⌨️ 快捷键说明

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