温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:人事管理系统(课程设计)源码
当前文件:
Mispersonal/WebFiles/User/User_search.aspx,打开代码结构图
Mispersonal/WebFiles/User/User_search.aspx,打开代码结构图1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="User_search.aspx.cs" Inherits="WebFiles_User_User_search" %> 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: 257px; width: 358px; position: absolute; top: 229px; 20
height: 140px"> 21
<table align=center cellpadding=0 cellspacing=0 style="width: 451px"> 22
<tr> 23
<td style="height: 21px;" bgcolor="#66c2de" colspan="6" align=center> 24
用户查询</td> 25
</tr> 26
<tr> 27
<td style="width: 118px; height: 19px;"> 28
选择搜索字段名:</td> 29
<td style="width: 89px; height: 19px;"> 30
<asp:DropDownList ID="role" runat="server"> 31
<asp:ListItem>用户编号</asp:ListItem> 32
<asp:ListItem>用户名称</asp:ListItem> 33
</asp:DropDownList></td> 34
<td style="width: 100px; height: 19px;"> 35
<asp:TextBox ID="TxtContent" runat="server"></asp:TextBox></td> 36
<td style="width: 62px; height: 19px;"> 37
<asp:Button ID="Btn_Search" runat="server" OnClick="Btn_Search_Click" Text="查询" /></td> 38
</tr> 39
<tr> 40
<td style="height: 102px;" colspan="6" align=center> 41
<br /> 42
<asp:GridView ID="User_List" runat="server" Height="60px" Width="403px" CellPadding="4" ForeColor="#333333" GridLines="None"> 43
<Columns> 44
<asp:BoundField> 45
</asp:BoundField> 46
</Columns> 47
<FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" /> 48
<RowStyle BackColor="#EFF3FB" /> 49
<EditRowStyle BackColor="#2461BF" /> 50
<SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" /> 51
<PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" /> 52
<HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" /> 53
<AlternatingRowStyle BackColor="White" /> 54
</asp:GridView> 55
</td> 56
</tr> 57
</table> 58
</div> 59
<uc3:Left_Navlist ID="Left_Navlist1" runat="server" /> 60
</form> 61
</body> 62
</html> 63




