DT 的数据字典
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

35 lines
1.4 KiB

<%@ Page Language="C#" Theme="Default" AutoEventWireup="true" CodeFile="Login.aspx.cs"
Inherits="Login" %>
<%@ Register Src="UC/TopUc.ascx" TagName="TopUc" TagPrefix="uc1" %>
<!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>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<uc1:TopUc ID="TopUc1" runat="server" />
<div class="Login">
<table cellpadding="0" cellspacing="0" border="0" class="inputTable">
<tr>
<td class="Label">
用户名:</td>
<td>
<asp:TextBox ID="txtUserName" runat="server" CssClass="txt"></asp:TextBox></td>
</tr>
<tr>
<td class="Label">
密&nbsp;&nbsp;&nbsp;&nbsp;码:</td>
<td>
<asp:TextBox ID="txtPasswd" runat="server" CssClass="txt"></asp:TextBox></td>
</tr>
<tr>
<td colspan="2">
<asp:Button ID="btnLogin" runat="server" CssClass="btn" Text="登 录" OnClick="btnLogin_Click" /></td>
</tr>
</table>
</div>
</form>
</body>
</html>