温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:人事管理系统(课程设计)源码
当前文件:
Mispersonal/WebFiles/Department/Add_Depart.aspx,打开代码结构图
Mispersonal/WebFiles/Department/Add_Depart.aspx,打开代码结构图1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Add_Depart.aspx.cs" Inherits="WebFiles_Department_Add_Depart" %> 2
<%@ Register Src="../../UserControl/Left_Navlist.ascx" TagName="Left_Navlist" TagPrefix="uc3" %> 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: 260px; width: 458px; position: absolute; top: 225px; 20
height: 257px"> 21
<table id="TABLE1" runat="server" cellpadding="0" cellspacing="0" align="center" style="width: 485px"> 22
<tr> 23
<td colspan="3" align="center" bgcolor="#66c2de" style="height: 25px"> 24
添加部门信息</td> 25
</tr> 26
<tr> 27
<td style="width: 115px; height: 35px" align="center"> 28
29
部门编号:</td> 30
<td style="width: 140px; height: 35px;"> 31
<asp:TextBox ID="tb_id" runat="server"></asp:TextBox></td> 32
<td style="width: 55px; height: 35px"> 33
</td> 34
</tr> 35
<tr> 36
<td style="width: 115px; height: 35px" align="center"> 37
38
部门名称:</td> 39
<td style="width: 140px; height: 35px;"> 40
<asp:TextBox ID="tb_name" runat="server"></asp:TextBox></td> 41
<td style="width: 55px; height: 35px"> 42
</td> 43
</tr> 44
<tr> 45
<td style="width: 115px; height: 35px" align="center"> 46
47
联系方式:</td> 48
<td style="width: 140px; height: 35px"> 49
<asp:TextBox ID="tb_tel" runat="server"></asp:TextBox></td> 50
<td style="height: 35px; width: 55px;"> 51
</td> 52
</tr> 53
<tr> 54
<td style="width: 115px; height: 35px" align="center"> 55
56
联系地址:</td> 57
<td style="width: 140px; height: 35px;"> 58
<asp:TextBox ID="tb_address" runat="server"></asp:TextBox></td> 59
<td style="width: 55px; height: 35px"> 60
</td> 61
</tr> 62
<tr> 63
<td style="width: 115px; height: 35px" align="center"> 64
65
负责人:</td> 66
<td style="width: 140px; height: 35px;"> 67
<asp:TextBox ID="tb_chief" runat="server"></asp:TextBox></td> 68
<td style="width: 55px; height: 35px"> 69
</td> 70
</tr> 71
<tr> 72
<td style="width: 115px; height: 35px" align="center"> 73
74
所属部门:</td> 75
<td style="width: 140px; height: 35px;"> 76
<asp:TextBox ID="tb_belong" runat="server"></asp:TextBox></td> 77
<td style="width: 55px; height: 35px"> 78
</td> 79
</tr> 80
<tr> 81
<td style="height: 21px" colspan="2" align="center"> 82
83
<asp:Button ID="btn_add" runat="server" OnClick="btn_add_Click" Text="添加" /> 84
85
<asp:Button ID="btn_cancel" runat="server" Text="重置" /></td> 86
<td style="height: 21px; width: 55px;"> 87
</td> 88
</tr> 89
</table> 90
</div> 91
<uc3:Left_Navlist ID="Left_Navlist1" runat="server" /> 92
</form> 93
</body> 94
</html> 95




