温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:三层小型论坛系统源码
当前文件:
myBBS/Login.aspx[2K,2009-6-12 11:48:08],打开代码结构图
myBBS/Login.aspx[2K,2009-6-12 11:48:08],打开代码结构图1<%@ Page Language="c#" Inherits="MyBBS.Web.Login" CodeFile="Login.aspx.cs" %> 2
3
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > 4
<html xmlns="http://www.w3.org/1999/xhtml"> 5
<head> 6
<title>登录页面</title> 7
<link href="Styles/Style.css" type="text/css" rel="stylesheet"/> 8
</head> 9
<body> 10
<form id="Form1" method="post" runat="server"> 11
<table id="Table1" style="z-index: 101; left: 15px; width: 328px; position: absolute; 12
top: 17px; height: 158px" cellspacing="0" cellpadding="0" width="328" border="0"> 13
<tr> 14
<td style="width: 45px"> 15
</td> 16
<td style="width: 164px" align="center"> 17
<img alt="" src="Images/logo.JPG" width="130"/></td> 18
</tr> 19
<tr> 20
<td style="width: 45px"> 21
<asp:Label ID="Label1" runat="server">登录名*</asp:Label></td> 22
<td style="width: 164px"> 23
<asp:TextBox ID="TextBoxLoginName" runat="server" Width="160px"></asp:TextBox></td> 24
</tr> 25
<tr> 26
<td style="width: 45px"> 27
<asp:Label ID="Label2" runat="server">密码*</asp:Label></td> 28
<td style="width: 164px"> 29
<asp:TextBox ID="TextBoxPassword" runat="server" Width="160px" TextMode="Password"></asp:TextBox></td> 30
</tr> 31
<tr> 32
<td align="center" colspan="3"> 33
<asp:Button ID="ButtonLogin" runat="server" Width="56px" Text="登录" OnClick="ButtonLogin_Click"> 34
</asp:Button> 35
<asp:Button ID="ButtonGuest" runat="server" Width="50px" Text="游客" OnClick="ButtonGuest_Click"> 36
</asp:Button> 37
<asp:HyperLink ID="HyperLinkRegister" runat="server" NavigateUrl="Register.aspx">注册</asp:HyperLink></td> 38
</tr> 39
</table> 40
</form> 41
</body> 42
</html> 43




