📄 admin_searcheval.aspx
字号:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Admin_SearchEval.aspx.cs" Inherits="Admin_SearchEval" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
<link href="css/css.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<div>
<br />
<br />
<asp:Panel ID="Panel1" align="center" runat="server" Height="325px" Width="666px">
<asp:GridView ID="GridView1" runat="server" AllowPaging="True" AllowSorting="True"
BorderColor="Silver" DataSourceID="SqlDataSource1" OnRowDataBound="GridView1_RowDataBound" AutoGenerateColumns="False" Width="571px">
<Columns>
<asp:BoundField DataField="Eva_Date" HeaderText="按日期排序" SortExpression="Eva_Date" />
<asp:BoundField DataField="Week" HeaderText="按星期排序" SortExpression="Week" />
<asp:BoundField DataField="Employee" HeaderText="按姓名排序" SortExpression="Employee" />
<asp:BoundField DataField="Status" HeaderText="按状态排序" SortExpression="Status" />
<asp:BoundField DataField="Eva_Time" HeaderText="按上班时间排序" SortExpression="Eva_Time" />
</Columns>
<PagerSettings FirstPageText="第一页" LastPageText="最后一页" Mode="NextPreviousFirstLast"
NextPageText="下一页" PreviousPageText="前一页" />
<RowStyle HorizontalAlign="Center" VerticalAlign="Middle" />
<PagerStyle HorizontalAlign="Center" VerticalAlign="Middle" BackColor="#C0FFFF" />
<HeaderStyle Font-Size="12px" HorizontalAlign="Center" VerticalAlign="Middle" BackColor="#C0FFFF" />
<AlternatingRowStyle HorizontalAlign="Center" VerticalAlign="Middle" />
<FooterStyle BackColor="#C0FFFF" />
</asp:GridView>
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:conString %>"
SelectCommand="SELECT * FROM [Evaluate] WHERE ([Employee] <> @Employee)">
<SelectParameters>
<asp:SessionParameter Name="Employee" SessionField="Name" Type="String" />
</SelectParameters>
</asp:SqlDataSource>
</asp:Panel>
</div>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -