温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:大学生调查投票系统源码
当前文件:
StudentVote/Login.aspx,打开代码结构图
StudentVote/Login.aspx,打开代码结构图1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Login.aspx.cs" Inherits="Admin" %> 2
3
<%@ Register Src="Header.ascx" TagName="Header" TagPrefix="uc1" %> 4
<%@ Register Src="Footer.ascx" TagName="Footer" TagPrefix="uc2" %> 5
6
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 7
8
<html xmlns="http://www.w3.org/1999/xhtml" > 9
<head runat="server"> 10
<title>管理员登陆</title> 11
</head> 12
<body style="font-size: 12pt; text-align: center" class="Css/StyleSheet.css"> 13
<form id="form1" runat="server"> 14
<div> 15
<table style="width: 755px" cellpadding="0" cellspacing="0"> 16
<tr> 17
<td colspan="3" style="height: 86px"> 18
<strong><span> </span></strong></td> 19
</tr> 20
<tr> 21
<td colspan="3" style="height: 379px; vertical-align: middle; text-align: center;"> 22
<table style="width: 397px; vertical-align: middle; text-align: center; background-image: url(Images/Login.jpg); height: 249px; border-top-width: thin; border-left-width: thin; border-left-color: black; border-bottom-width: thin; border-bottom-color: black; border-top-color: black; border-right-width: thin; border-right-color: black;"> 23
<tr> 24
<td style="width: 231px; text-align: right;"> 25
<span style="font-size: 9pt"></span></td> 26
<td colspan="2" style="width: 157px; text-align: left;"> 27
</td> 28
</tr> 29
<tr> 30
<td style="width: 231px; height: 52px; text-align: right;"> 31
<span style="font-size: 9pt"> 32
</span></td> 33
<td colspan="2" style="width: 157px; height: 52px; text-align: left;"> 34
</td> 35
</tr> 36
<tr> 37
<td style="width: 231px; height: 15px; text-align: right"> 38
<span style="font-size: 9pt">用户名</span>:</td> 39
<td colspan="2" style="width: 157px; height: 15px; text-align: left"> 40
<asp:TextBox ID="txtUid" runat="server" Font-Size="9pt" Width="100px"></asp:TextBox></td> 41
</tr> 42
<tr> 43
<td style="width: 231px; height: 15px; text-align: right"> 44
<span style="font-size: 9pt"> 45
密 码</span>:</td> 46
<td colspan="2" style="width: 157px; height: 15px; text-align: left"> 47
<asp:TextBox ID="txtPwd" runat="server" Font-Size="9pt" TextMode="Password" Width="100px"></asp:TextBox></td> 48
</tr> 49
<tr> 50
<td style="width: 231px; height: 1px; text-align: right"> 51
</td> 52
<td colspan="2" style="width: 157px; height: 1px; text-align: left"> 53
<asp:Button ID="btnOK" runat="server" Font-Size="9pt" OnClick="btnOK_Click" Text="确定" /> 54
<asp:Button ID="btnCancle" runat="server" Font-Size="9pt" Text="取消" OnClick="btnCancle_Click" /> 55
</td> 56
</tr> 57
<tr> 58
<td style="width: 231px; height: 57px; text-align: right"> 59
</td> 60
<td colspan="2" style="width: 157px; height: 57px; text-align: left"> 61
</td> 62
</tr> 63
<tr> 64
<td colspan="3" style="height: 22px"> 65
</td> 66
</tr> 67
</table> 68
</td> 69
</tr> 70
<tr> 71
<td colspan="3" style="height: 10px"> 72
</td> 73
</tr> 74
</table> 75
76
</div> 77
</form> 78
</body> 79
</html> 80



