Index.aspx
上传用户:shjujing
上传日期:2022-07-28
资源大小:11244k
文件大小:6k
源码类别:

Email客户端

开发平台:

Visual C++

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Index.aspx.cs" Inherits="IndexFrame_Main" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" >
  4. <head runat="server">
  5.     <title>系统登录</title>
  6. </head>
  7. <body style="font-size: 12pt; text-align: center; margin-top: 0px; padding-top: 0px;" scroll="auto">
  8.     <form id="form1" runat="server">
  9.         &nbsp;<br />
  10.         <br />
  11.         <br />
  12.         <br />
  13.         <br />
  14.         <br />
  15.         <br />
  16.                     <table style="width: 514px; height: 322px; background-image: url(Images/SysSkin/login.jpg);">
  17.                         <tr>
  18.                             <td colspan="1" rowspan="1" style="width: 124px; height: 74px">
  19.                             </td>
  20.                             <td colspan="3" rowspan="1" style="height: 74px">
  21.                             </td>
  22.                         </tr>
  23.                         <tr>
  24.                             <td colspan="1" rowspan="3" style="width: 124px; height: 212px">
  25.                             </td>
  26.                             <td colspan="3" rowspan="3" style="height: 212px">
  27.                                 &nbsp;<table cellpadding="0" cellspacing="0" style="width: 240px">
  28.             <tr>
  29.                 <td colspan="3" style="height: 40px; text-align: center">
  30.                     <span style="font-size: 14pt; color: #ff3300"></span></td>
  31.             </tr>
  32.             <tr>
  33.                 <td style="width: 69px; text-align: right; height: 23px;">
  34.                     <span style="font-size: 9pt">用户名&nbsp; </span>
  35.                 </td>
  36.                 <td colspan="2" style="width: 183px; text-align: left; font-size: 12pt; height: 23px;">
  37.                     <asp:TextBox ID="txtName" runat="server" Font-Size="9pt" Width="120px"></asp:TextBox>
  38.                     <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="txtName"
  39.                         ErrorMessage="用户名不能为空" Font-Size="9pt">*</asp:RequiredFieldValidator></td>
  40.             </tr>
  41.             <tr style="font-size: 12pt; color: #000000">
  42.                 <td style="width: 69px; text-align: right; height: 23px;">
  43.                     <span><span style="font-size: 9pt"><span>密 &nbsp; 码</span>&nbsp; </span></span>
  44.                 </td>
  45.                 <td colspan="2" style="width: 183px; text-align: left; height: 23px;">
  46.                     <asp:TextBox ID="txtPwd" runat="server" Font-Size="9pt" Width="120px" TextMode="Password"></asp:TextBox><span
  47.                         style="font-size: 9pt"> </span>
  48.                     <asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server" ControlToValidate="txtPwd"
  49.                         ErrorMessage="密码不能为空" Font-Size="9pt">*</asp:RequiredFieldValidator></td>
  50.             </tr>
  51.             <tr style="font-size: 12pt; color: #000000">
  52.                 <td style="width: 69px; height: 23px; text-align: right">
  53.                     <span style="font-size: 9pt">验证码&nbsp; </span>
  54.                 </td>
  55.                 <td colspan="2" style="vertical-align: middle; width: 183px; height: 23px; text-align: left">
  56.                     <table cellpadding="0" cellspacing="0" style="width: 100%">
  57.                         <tr>
  58.                             <td style="width: 53px">
  59.                     <asp:TextBox ID="txtCheckCode" runat="server" Width="53px"></asp:TextBox></td>
  60.                             <td style="width: 52px">
  61.                     <asp:Image ID="Image1" runat="server" BorderStyle="None" Height="22px" ImageAlign="Middle"
  62.                         ImageUrl="~/CheckCode.aspx" Width="63px" /></td>
  63.                             <td style="width: 51px">
  64.                             </td>
  65.                         </tr>
  66.                     </table>
  67.                 </td>
  68.             </tr>
  69.             <tr style="font-size: 12pt">
  70.                 <td colspan="3" style="height: 26px; text-align: left">
  71.                     <table style="width: 240px" cellpadding="0" cellspacing="0">
  72.                         <tr>
  73.                             <td style="vertical-align: bottom; width: 113px; height: 13px; text-align: right">
  74.                                 <asp:CheckBox ID="CheckBox1" runat="server" Font-Size="10pt" ForeColor="#FF3300"
  75.                                     Text="管理员登录" /></td>
  76.                             <td colspan="2" style="vertical-align: text-bottom; height: 13px; text-align: center">
  77.                                 <asp:LinkButton ID="lnkbtnForget" runat="server" Font-Size="9pt" Font-Underline="False"
  78.                                     ForeColor="#FF3300" PostBackUrl="~/Module/SysInfo/FindPwd.aspx" CausesValidation="False">忘记密码?</asp:LinkButton></td>
  79.                         </tr>
  80.                     </table>
  81.                 </td>
  82.             </tr>
  83.             <tr style="font-size: 12pt">
  84.                 <td colspan="3" style="text-align: center; height: 22px;">
  85.                     <asp:Button ID="btnOK" runat="server" Font-Size="9pt" OnClick="btnOK_Click" Text="确定" />
  86.                     <input id="Reset2" style="font-size: 9pt" type="reset" value="重置" /></td>
  87.             </tr>
  88.         </table>
  89.                                 &nbsp;
  90.         <asp:ValidationSummary ID="ValidationSummary1" runat="server" Font-Size="9pt" ShowMessageBox="True"
  91.             ShowSummary="False" />
  92.                             </td>
  93.                         </tr>
  94.                         <tr>
  95.                         </tr>
  96.                         <tr>
  97.                         </tr>
  98.                     </table>
  99.     </form>
  100. </body>
  101. </html>