st_logonmodule.ascx

来自「本程序是一个宾馆管理系统」· ASCX 代码 · 共 31 行

ASCX
31
字号
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="ST_LogonModule.ascx.cs" Inherits="ST_LogonModule" %>
<table border="0" style="width: 526px">
  <tr>
    <td colspan="3" style="height: 34px; font-size: 12px;">用户请在此出输入正确的用户名和密码,单击“登陆”按钮以登陆系统</td>
  </tr>
  <tr>
    <td style="width: 92px; height: 37px; font-size: 15px;">用户名:</td>
    <td colspan="2" style="height: 37px">&nbsp;<asp:TextBox ID="txtUserName" runat="server" Style="position: relative"></asp:TextBox>
        <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="txtUserName"
            ErrorMessage="用户名不能为空" Style="font-size: 15px; position: relative"></asp:RequiredFieldValidator></td>
  </tr>
  <tr>
    <td height="38" style="width: 92px; font-size: 15px;">密码:</td>
    <td colspan="2">&nbsp;<asp:TextBox ID="txtUserPwd" runat="server" Style="position: relative" TextMode="Password"></asp:TextBox>
        <asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server" ControlToValidate="txtUserPwd"
            ErrorMessage="密码不能为空" Style="font-size: 15px; position: relative"></asp:RequiredFieldValidator></td>
  </tr>
  <tr>
    <td height="46" style="width: 92px">&nbsp;</td>
    <td width="213" align="right">&nbsp;<asp:Button ID="btbLogon" runat="server" Style="position: relative; left: 14px; top: 0px;" Text="登陆" Width="57px" OnClick="btbLogon_Click" /></td>
    <td rowspan="3" valign="top" style="width: 128px">&nbsp;</td>
  </tr>
  <tr>
    <td height="43" colspan="2">&nbsp;<asp:Label ID="lalInfo" runat="server" Height="29px" Style="left: 6px; position: relative;
            top: 0px; font-size: 15px;" Text="Label" Width="340px"></asp:Label></td>
  </tr>
  <tr>
    <td height="50" colspan="2">&nbsp;<asp:Label ID="Label1" runat="server" Style="position: relative" Text="Label"
            Width="199px"></asp:Label></td>
  </tr>
</table>

⌨️ 快捷键说明

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