温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:人事管理系统(课程设计)源码
当前文件:
Mispersonal/WebFiles/Department/Search_Depart.aspx,打开代码结构图
Mispersonal/WebFiles/Department/Search_Depart.aspx,打开代码结构图1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Search_Depart.aspx.cs" Inherits="WebFiles_Department_Search_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
<div style="z-index: 101; left: 215px; width: 664px; position: absolute; top: 223px; 19
height: 127px"> 20
<table id="TABLE1" runat="server" style="width: 686px" cellpadding="0" cellspacing="0"> 21
<tr> 22
<td bgcolor="#66c2de" colspan="4" align="center" style="height: 24px"> 23
部门信息搜索</td> 24
</tr> 25
<tr> 26
<td style="width: 233px; height: 1px" > 27
选择搜索字段名:</td> 28
<td style="width: 234px; height: 1px" align="center"> 29
<asp:DropDownList ID="role" runat="server" Width="135px"> 30
<asp:ListItem>部门编号</asp:ListItem> 31
<asp:ListItem>部门名称</asp:ListItem> 32
<asp:ListItem>负责人</asp:ListItem> 33
</asp:DropDownList></td> 34
<td style="width: 100px; height: 1px"> 35
36
<asp:TextBox ID="TxtContent" runat="server"></asp:TextBox> 37
38
</td> 39
<td style="width: 131px; height: 1px"> 40
41
42
<asp:Button ID="brn_search" runat="server" Text="查询" OnClick="brn_search_Click" /></td> 43
</tr> 44
<tr> 45
<td colspan="4" style="height: 82px"> 46
<br /> 47
<asp:GridView ID="List_employee" runat="server" CellPadding="4" ForeColor="#333333" GridLines="None" 48
Width="684px"> 49
<FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" /> 50
<RowStyle BackColor="#EFF3FB" /> 51
<EditRowStyle BackColor="#2461BF" /> 52
<SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" /> 53
<PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" /> 54
<HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" /> 55
<AlternatingRowStyle BackColor="White" /> 56
</asp:GridView> 57
</td> 58
</tr> 59
</table> 60
</div> 61
<uc3:Left_Navlist ID="Left_Navlist1" runat="server" /> 62
</form> 63
</body> 64
</html> 65




