温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:Asp.net2.0值班管理系统源码
当前文件:
DutySystem/DutySearchMain.aspx[2K,2009-6-12 11:41:29],打开代码结构图
DutySystem/DutySearchMain.aspx[2K,2009-6-12 11:41:29],打开代码结构图1<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="DutySearchMain.aspx.cs" Inherits="DutySearchMain" Title="值班搜索页面" %> 2
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server"> 3
<br /> 4
-->值班表查询<br /> 5
<asp:Label ID="Label1" runat="server"></asp:Label><br /> 6
<asp:Label ID="Label2" runat="server" Height="25px" Text="没有匹配数据!" Visible="False" 7
Width="150px"></asp:Label><br /> 8
<asp:Panel ID="Panel1" runat="server" Height="50px" Width="600px"> 9
<table> 10
<tr> 11
<td style="width: 100px"> 12
开始日期</td> 13
<td style="width: 100px"> 14
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox></td> 15
<td style="width: 100px"> 16
结束时间</td> 17
<td style="width: 100px"> 18
<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox></td> 19
<td style="width: 100px"> 20
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="search" /></td> 21
</tr> 22
</table> 23
日期格式 yyyy-mm-dd<br /> 24
<br /> 25
</asp:Panel> 26
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" CellPadding="4" 27
ForeColor="#333333" GridLines="None" Width="600px"> 28
<FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" /> 29
<Columns> 30
<asp:BoundField DataField="id" HeaderText="ID" /> 31
<asp:BoundField DataField="L_KS_KSMC" HeaderText="部门" /> 32
<asp:BoundField DataField="L_user_name" HeaderText="姓名" /> 33
<asp:BoundField DataField="L_ZBB_dateBegin" DataFormatString="{0:yyyy-MM-dd}" HeaderText="开始日期" 34
HtmlEncode="False" /> 35
<asp:BoundField DataField="L_ZBB_dateEnd" DataFormatString="{0:yyyy-MM-dd}" HeaderText="结束日期" 36
HtmlEncode="False" /> 37
<asp:BoundField DataField="L_ZBB_BZ" HeaderText="备注" /> 38
</Columns> 39
<RowStyle BackColor="#EFF3FB" /> 40
<EditRowStyle BackColor="#2461BF" /> 41
<SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" /> 42
<PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" /> 43
<HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" /> 44
<AlternatingRowStyle BackColor="White" /> 45
</asp:GridView> 46
</asp:Content> 47
48





