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

Email客户端

开发平台:

Visual C++

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="adminlogin.aspx.cs" Inherits="Manage_adminlogin" %>
  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.   <link rel="shortcut icon" type="image/ico" href="../favicon.ico" />
  6.   <title>管理员登陆</title>
  7. </head>
  8. <body>
  9.   <form id="form1" runat="server">
  10.     <div>
  11.       <table style="z-index: 100; left: 200px; position: absolute; top: 50px">
  12.         <tr>
  13.           <td style="width: 100px">管理员名字:</td>
  14.           <td style="width: 100px"><asp:TextBox ID="adminnametxt" runat="server"></asp:TextBox></td>
  15.         </tr>
  16.         <tr>
  17.           <td style="width: 100px">管理员密码:</td>
  18.           <td style="width: 100px">
  19.             <asp:TextBox ID="passtxt" runat="server" TextMode="Password" Width="149px"></asp:TextBox></td>
  20.         </tr>
  21.         <tr>
  22.           <td style="width: 100px">验<span style="color: #ffffff">__</span>证<span style="color: #ffffff">__</span>码:</td>
  23.           <td style="width: 100px">
  24.             <asp:TextBox ID="yzmtxt" runat="server"></asp:TextBox><!--以下使用一个ImageButton单击可以刷新-->
  25.             <asp:ImageButton ID="ImageButton1" runat="server" ImageUrl="Validata.aspx" ToolTip="单击可以刷新" />
  26.           </td>
  27.         </tr>
  28.         <tr>
  29.           <td style="width: 100px"></td>
  30.           <td style="width: 100px">
  31.             <asp:Button ID="querenbtn" runat="server" Text="确认" OnClick="querenbtn_Click" /></td>
  32.         </tr>
  33.       </table>
  34.     </div>
  35.   </form>
  36. </body>
  37. </html>