温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:苹果投票系统源码及毕业论文
当前文件:
AppleVote/login.aspx[3K,2009-6-12 11:31:41],打开代码结构图
AppleVote/login.aspx[3K,2009-6-12 11:31:41],打开代码结构图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>登陆界面</title> 8
</head> 9
<body style="background-image: url(image/back.jpg)"> 10
<form id="form1" runat="server"> 11
<p style="background-image: url(image/back.jpg); text-align: center"> 12
<table style="height: 304px; background-color: #999933;" border="1"> 13
<tr> 14
<td style="width: 124px"> 15
</td> 16
<td style="width: 122px" > 17
登陆界面</td> 18
<td style="width: 138px"> 19
</td> 20
</tr> 21
<tr> 22
<td style="width: 124px; height: 60px; text-align: right;"> 23
请选择身份:</td> 24
<td style="width: 122px; height: 60px; text-align: left;"> 25
<asp:RadioButton ID="RadioButton1" runat="server" Checked="True" GroupName="shenfen" 26
Text="管理员" /> 27
<br /> 28
<asp:RadioButton ID="RadioButton2" runat="server" GroupName="shenfen" Text="客户" /></td> 29
<td style="width: 138px; height: 60px;"> 30
</td> 31
</tr> 32
<tr> 33
<td style="width: 124px; text-align: right;"> 34
请输入用户名:</td> 35
<td style="width: 122px"> 36
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox></td> 37
<td style="width: 138px"> 38
</td> 39
</tr> 40
<tr> 41
<td style="width: 124px; text-align: right;"> 42
请输入密码:</td> 43
<td style="width: 122px"> 44
<asp:TextBox ID="TextBox2" runat="server" TextMode="Password" Width="149px"></asp:TextBox></td> 45
<td style="width: 138px"> 46
</td> 47
</tr> 48
<tr> 49
<td style="width: 124px; text-align: right;"> 50
请输入验证码:</td> 51
<td style="width: 122px"> 52
<asp:TextBox ID="TextBox3" runat="server"></asp:TextBox></td> 53
<td style="width: 138px"> 54
<asp:Image ID="Image1" runat="server" ImageUrl="~/CodeCheck.aspx" /> 55
<asp:Button ID="Button3" runat="server" BackColor="#FFFF80" BorderColor="Black" BorderStyle="None" 56
Height="25px" Text="刷新" Width="46px" /></td> 57
</tr> 58
<tr> 59
<td style="width: 124px"> 60
</td> 61
<td style="width: 122px"> 62
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="登陆" /> 63
<asp:Button ID="Button2" runat="server" Text="注册" PostBackUrl="~/register.aspx" /></td> 64
<td style="width: 138px"> 65
</td> 66
</tr> 67
</table> 68
69
</p> 70
</form> 71
</body> 72
</html> 73




