温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:人事管理系统(课程设计)源码
当前文件:
Mispersonal/WebFiles/Employee/List_employee.aspx,打开代码结构图
Mispersonal/WebFiles/Employee/List_employee.aspx,打开代码结构图1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="List_employee.aspx.cs" Inherits="WebFiles_Employee_List_employee" %> 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
</div> 16
<br /> 17
18
<div style="z-index: 101; left: 207px; width: 784px; position: absolute; top: 223px; 19
height: 143px"> 20
<table cellpadding="0" cellspacing="0" style="width: 783px"> 21
<tr> 22
<td bgcolor="#66c2de" colspan="3" style="width: 764px; height: 20px" align="center"> 23
员工信息列表</td> 24
</tr> 25
<tr> 26
<td colspan="3" style="width: 764px; height: 96px;" align="center"> 27
<br /> 28
<asp:GridView ID="list1" runat="server" Height="48px" Width="779px" CellPadding="4" ForeColor="#333333" GridLines="None" OnPageIndexChanging="list1_PageIndexChanging" > 29
<FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" /> 30
<RowStyle BackColor="#EFF3FB" /> 31
<EditRowStyle BackColor="#2461BF" /> 32
<SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" /> 33
<PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" /> 34
<HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" /> 35
<AlternatingRowStyle BackColor="White" /> 36
<Columns> 37
<asp:HyperLinkField DataNavigateUrlFields="员工编号,员工姓名" DataNavigateUrlFormatString="~/WebFiles/Employee/DisplayEmployee.aspx?E_ID={0}&E_Name={1}" 38
DataTextField="员工姓名" HeaderImageUrl="~/WebFiles/Images/user.gif" /> 39
</Columns> 40
41
</asp:GridView> 42
<br /> 43
</td> 44
</tr> 45
</table> 46
</div> 47
<uc3:Left_Navlist ID="Left_Navlist1" runat="server" /> 48
</form> 49
</body> 50
</html> 51




