Advertisement
imjyb1008work

login

May 14th, 2019
2,333
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.64 KB | None | 0 0
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Login.aspx.cs" Inherits="WebApplication1.Login" %>
  2.  
  3. <!DOCTYPE html>
  4.  
  5. <html xmlns="http://www.w3.org/1999/xhtml">
  6. <head runat="server">
  7.     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  8.     <title></title>
  9. </head>
  10. <body>
  11.     <form id="form1" runat="server">
  12.         <div>
  13.             <asp:TextBox ID="txtAccount" runat="server"></asp:TextBox>
  14.             <asp:TextBox ID="txtPassword" runat="server"></asp:TextBox>
  15.             <asp:CheckBox ID="chkRememberMe" runat="server" />
  16.             <asp:Button ID="btnLogin" runat="server" Text="登入" OnClick="btnLogin_Click" />
  17.         </div>
  18.     </form>
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement