login.aspx

来自「this is the file to chat in web」· ASPX 代码 · 共 57 行

ASPX
57
字号
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="login.aspx.cs" Inherits="login" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>The login page</title>
		<LINK href="css/global.css" type="text/css">
		<script src="javascript/common.js" type="text/javascript"></script>
</head>
<body bgcolor="#cccc99">
    <form id="form1" runat="server">
    <div>
        <br />
        <div style="width: 248px; height: 209px">
            <asp:Image ID="Image1" runat="server" Height="242px" ImageUrl="~/images/logo.jpg"
                Width="269px" /></div>
        <br />
        <table border="1" bordercolordark="#ffff99" style="width: 316px; height: 186px">
            <tr>
                <td style="width: 116px">
                    <asp:Label ID="Label1" runat="server" Font-Size="Large" Width="90px">User name:</asp:Label></td>
                <td>
                    <asp:TextBox ID="tbUsername" runat="server" Font-Size="Large" Width="160px"></asp:TextBox></td>
            </tr>
            <tr>
                <td style="width: 116px">
                    <asp:Label ID="Label2" runat="server" Font-Size="Large">Password:</asp:Label></td>
                <td>
                    <asp:TextBox ID="tbPassword" runat="server" Font-Size="Large" Height="21px" TextMode="Password"
                        Width="159px"></asp:TextBox></td>
            </tr>
            <tr>
                <td style="width: 116px">
                    <asp:Label ID="Label3" runat="server" Font-Size="Large" Width="117px">Login state:</asp:Label></td>
                <td>
                    <asp:DropDownList ID="ddlStatus" runat="server" Font-Size="Large" Width="117px">
                        <asp:ListItem Selected="True" Value="1">Online</asp:ListItem>
                        <asp:ListItem Value="2">Offline</asp:ListItem>
                    </asp:DropDownList></td>
            </tr>
            <tr>
                <td colspan="2">
                    <asp:Button ID="btnLogin" runat="server" BackColor="#FFE0C0" BorderStyle="Double"
                        Font-Size="Large" Height="34px" OnClick="btnLogin_Click" Text="Login" Width="122px" /></td>
            </tr>
            <tr>
                <td colspan="2">
                    <asp:Label ID="lblMessage" runat="server" Font-Size="Large" ForeColor="Red"></asp:Label></td>
            </tr>
        </table>
    
    </div>
    </form>
</body>
</html>

⌨️ 快捷键说明

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