温馨提示:代码在线浏览功能只能做为源码浏览参考,不能展示项目的全部,如果想更进一步了解该代码请下载:智能选课系统源码及论坛
当前文件路径:XuanKeLunWen/student/StudentLogin.aspx

1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="StudentLogin.aspx.cs" Inherits="StudentLogin" %> 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/BKGRD9.jpg)"> 10
<form id="form1" runat="server"> 11
<div> 12
<table border="0" cellpadding="0" cellspacing="0" style="border-right: #66ccff 0.1mm solid; border-top: #66ccff 0.1mm solid; margin-top: 20px; margin-left: 300px; border-left: #66ccff 0.1mm solid; margin-right: 200px; border-bottom: #66ccff 0.1mm solid; width: 299px;"> 13
<tr> 14
<td colspan="3" style="height: 18px; border-bottom: #66ccff 0.1mm solid;" align="center"> 15
学生登录</td> 16
</tr> 17
<tr> 18
<td style="width: 51px; height: 26px;"> 19
姓名:</td> 20
<td style="width: 148px; height: 26px;"> 21
<asp:TextBox ID="TextBox1" runat="server" Width="149px"></asp:TextBox></td> 22
<td style="width: 81px; height: 26px;"> 23
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="TextBox1" 24
Display="Dynamic" ErrorMessage="姓名空"></asp:RequiredFieldValidator></td> 25
</tr> 26
<tr> 27
<td style="width: 51px; height: 19px;"> 28
密码:</td> 29
<td style="width: 148px; height: 19px;"> 30
<asp:TextBox ID="TextBox2" runat="server" TextMode="Password" Width="150px"></asp:TextBox></td> 31
<td style="width: 81px; height: 19px;"> 32
<asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server" ControlToValidate="TextBox2" 33
Display="Dynamic" ErrorMessage="密码空"></asp:RequiredFieldValidator></td> 34
</tr> 35
<tr> 36
<td style="width: 51px"> 37
确认:</td> 38
<td style="width: 148px"> 39
<asp:TextBox ID="TextBox3" runat="server" TextMode="Password" Width="150px"></asp:TextBox></td> 40
<td style="width: 81px"> 41
<asp:CompareValidator ID="CompareValidator1" runat="server" ControlToCompare="TextBox2" 42
ControlToValidate="TextBox3" Display="Dynamic" ErrorMessage="密码不一致"></asp:CompareValidator></td> 43
</tr> 44
<tr> 45
<td style="height: 13px;" align="center" colspan="3" valign="middle"> 46
<asp:ImageButton ID="ImageButton1" runat="server" ImageUrl="~/image/Login.jpg" Width="57px" OnClick="ImageButton1_Click" Height="30px" /><a href="StudentReg.aspx">注册</a></td> 47
</tr> 48
</table> 49
50
</div> 51
</form> 52
</body> 53
</html> 54



