温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:狂龙通讯录信息系统V1.0
当前文件:
KuangLongCommunication/Login.aspx,打开代码结构图
KuangLongCommunication/Login.aspx,打开代码结构图1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Login.aspx.cs" Inherits="Login" %> 2
3
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 4
5
<html xmlns="http://www.w3.org/1999/xhtml" > 6
<head runat="server"> 7
<title>狂龙通讯录1.0</title> 8
<link rel=stylesheet href="Styles/Style.css" type="text/css" /> 9
</head> 10
<body background="image/bg.gif"> 11
<form id="form1" runat="server" > 12
<div > 13
<p> </p> 14
<p> </p> 15
<p> </p> 16
<p> </p> 17
<table align=center style="width: 339px" bgcolor=white border=2> 18
<tr> 19
<td colspan=2 align=center style="height: 15px"> 20
<img src="image/Logoamend.jpg" style="width: 338px" /></td> 21
</tr> 22
<tr> 23
<td style="width: 100px; height: 26px;" > 24
登录名:</td> 25
<td style="height: 26px"> 26
<asp:TextBox ID="txtUserName" runat="server" Width="139px"></asp:TextBox></td> 27
</tr> 28
<tr> 29
<td style="width: 100px"> 30
密 码:</td> 31
<td> 32
<asp:TextBox ID="txtUserPwd" runat="server" TextMode="Password"></asp:TextBox></td> 33
</tr> 34
<tr> 35
<td colspan=2 align=center style="height: 10px"> 36
<asp:Button ID="btnLogin" runat="server" Text="登录" OnClick="btnLogin_Click" Width="52px" /> 37
<asp:HyperLink ID="HLregister" runat="server" NavigateUrl="~/Register.aspx" Width="50px">注册</asp:HyperLink></td> 38
</tr> 39
</table> 40
41
</div> 42
</form> 43
44
</body> 45
</html> 46



