📄 t_calendar.aspx
字号:
<%@ Page Language="C#" MasterPageFile="~/Admin.master" AutoEventWireup="true" CodeFile="T_Calendar.aspx.cs" Inherits="T_Calendar" Title="开放式实验室预约系统-实验课表(老师)" EnableEventValidation = "false" %>
<%@ Register Assembly="devBiz.Web.UI" Namespace="devBiz.Web.UI.WebControls" TagPrefix="dbz" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<div align="left">
<asp:Label ID="Label1" runat="server" Text="当前学期:"></asp:Label>
<asp:Label ID="lblCurrentTerm" runat="server" Text="2006-2007第二学期" Font-Bold="True"></asp:Label>
<asp:Button ID="BtnRefresh" runat="server" OnClick="BtnRefresh_Click" Text="刷新" />
<asp:Button ID="btnPrint" runat="server" Text="打印" OnClick="btnPrint_Click" />
</div><br/>
<fieldset id="fsList" runat="server" style="text-align: left">
<legend runat="server" id="legendList">我的实验课程表</legend>
<asp:GridView ID="BatchList" runat="server" OnPageIndexChanging="BatchList_PageIndexChanging" OnRowCommand="BatchList_RowCommand" OnRowCreated="BatchList_RowCreated" OnRowDataBound="BatchList_RowDataBound" OnSorting="BatchList_Sorting" AutoGenerateColumns="False" >
<Columns>
<asp:BoundField DataField="ID" HeaderText="ID">
<ItemStyle Width="20px" />
</asp:BoundField>
<asp:BoundField DataField="CourseName" HeaderText="实验科目" />
<asp:BoundField DataField="CourseDetailName" HeaderText="实验项目" />
<asp:BoundField HeaderText="容量" DataField="State" />
<asp:BoundField HeaderText="日期" DataField="Date" DataFormatString="{0:yyyy-MM-dd}" HtmlEncode="False" />
<asp:BoundField HeaderText="节次" DataField="ClassNo" />
<asp:BoundField HeaderText="实验地点" DataField="Address" />
<asp:ButtonField HeaderText="查看预约学生" Text="查看预约学生" CommandName="ShowStudents" />
</Columns>
</asp:GridView>
</fieldset>
<br />
<asp:Label ID="lbMsg" runat="server" ForeColor="Red" Text="Label"></asp:Label><br />
</asp:Content>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -