温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:人事管理系统(课程设计)源码
当前文件:
Mispersonal/WebFiles/User/User_registor.aspx,打开代码结构图
Mispersonal/WebFiles/User/User_registor.aspx,打开代码结构图1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="User_registor.aspx.cs" Inherits="WebFiles_User_User_registor" %> 2
<%@ Register Src="../../UserControl/Left_Navlist.ascx" TagName="Left_Navlist" TagPrefix="uc4" %> 3
<%@ Register Src="../../UserControl/Header.ascx" TagName="Header" TagPrefix="uc1" %> 4
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 5
6
<html xmlns="http://www.w3.org/1999/xhtml" > 7
<head runat="server"> 8
<title>用户注册</title> 9
<link rel=Stylesheet type="text/css" href="../../CSS/Mispersonal.css" /> 10
</head> 11
<body> 12
<form id="form1" runat="server"> 13
<div> 14
<uc1:Header ID="Header1" runat="server" /> 15
16
</div> 17
<br /> 18
19
<div style="z-index: 101; left: 248px; width: 403px; position: absolute; top: 229px; 20
height: 206px"> 21
<table align=center cellpadding=0 cellspacing=0> 22
<tr> 23
<td bgcolor="#66c2de" colspan="5" align=center style="height: 24px"> 24
用户注册</td> 25
</tr> 26
<tr> 27
<td style="width: 145px; height: 33px;" align="center"> 28
29
用户编号:</td> 30
<td colspan="3" style="height: 33px"> 31
<asp:TextBox ID="TxtUserID" runat="server"></asp:TextBox></td> 32
<td style="width: 100px; height: 33px;"> 33
</td> 34
</tr> 35
<tr> 36
<td style="width: 145px; height: 33px;" align="center"> 37
38
用户名称:</td> 39
<td colspan="3" style="height: 33px"> 40
<asp:TextBox ID="TxtUser" runat="server"></asp:TextBox></td> 41
<td style="width: 100px; height: 33px;"> 42
</td> 43
</tr> 44
<tr> 45
<td style="width: 145px; height: 32px;" align="center"> 46
47
用户密码:</td> 48
<td colspan="3" style="height: 32px"> 49
<asp:TextBox ID="TxtPass" runat="server" TextMode="Password"></asp:TextBox></td> 50
<td style="width: 100px; height: 32px;"> 51
</td> 52
</tr> 53
<tr> 54
<td style="width: 145px; height: 29px;" align="center"> 55
确认密码:</td> 56
<td colspan="3" style="height: 29px"> 57
<asp:TextBox ID="TxtPass1" runat="server" TextMode="Password"></asp:TextBox></td> 58
<td style="width: 100px; height: 29px;"> 59
</td> 60
</tr> 61
<tr> 62
<td style="width: 145px; height: 31px;" align="center"> 63
用户角色:</td> 64
<td colspan="3" style="height: 31px"> 65
<asp:DropDownList ID="role" runat="server"> 66
<asp:ListItem Selected="True">普通用户</asp:ListItem> 67
<asp:ListItem>管理员</asp:ListItem> 68
</asp:DropDownList></td> 69
<td style="width: 100px; height: 31px;"> 70
</td> 71
</tr> 72
<tr> 73
<td style="width: 145px; height: 35px;"> 74
</td> 75
<td style="height: 35px;" colspan="3"> 76
<asp:Button ID="bt_add" runat="server" OnClick="bt_add_Click" Text="注册" /></td> 77
<td style="width: 100px; height: 35px;"> 78
</td> 79
</tr> 80
</table> 81
</div> 82
<uc4:Left_Navlist ID="Left_Navlist1" runat="server" /> 83
</form> 84
</body> 85
</html> 86




