applyingclass.aspx

来自「asp.net连带c++技术开发」· ASPX 代码 · 共 36 行

ASPX
36
字号
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="ApplyingClass.aspx.cs" Inherits="Teacher_ApplyingClass" Title="Untitled Page" EnableEventValidation="false"  %>
<asp:Content ID="Content1" ContentPlaceHolderID="cphMain" Runat="Server">
    <table>
        <tr>
            <td align="left" style="width: 100px; color: #ffffff; background-color: steelblue">
                待审核课程</td>
        </tr>
        <tr>
            <td style="width: 100px">
                <asp:DataGrid ID="DataGrid2" runat="server" AutoGenerateColumns="False" BackColor="LightGoldenrodYellow"
                    BorderColor="Tan" BorderWidth="1px" CellPadding="2" ForeColor="Black" GridLines="None" Width="541px" Font-Size="Small" OnDeleteCommand="ApplyingClass">
                    <FooterStyle BackColor="Tan" />
                    <SelectedItemStyle BackColor="DarkSlateBlue" ForeColor="GhostWhite" />
                    <PagerStyle BackColor="PaleGoldenrod" ForeColor="DarkSlateBlue" HorizontalAlign="Center" />
                    <AlternatingItemStyle BackColor="PaleGoldenrod" />
                    <HeaderStyle BackColor="Tan" Font-Bold="True" />
                    <Columns>
                        <asp:HyperLinkColumn DataNavigateUrlField="class_id" DataNavigateUrlFormatString="~/SeeClassTable.aspx?id={0}"
                            DataTextField="class_id" HeaderText="课程编号" NavigateUrl="~/SeeClassTable.aspx"
                            Target="_blank"></asp:HyperLinkColumn>
                        <asp:BoundColumn DataField="class_name" HeaderText="课程名称"></asp:BoundColumn>
                        <asp:BoundColumn DataField="class_dep_id" HeaderText="开课系部"></asp:BoundColumn>
                        <asp:BoundColumn DataField="class_kind" HeaderText="课程类型"></asp:BoundColumn>
                        <asp:BoundColumn DataField="class_credit" HeaderText="课程学分"></asp:BoundColumn>
                        <asp:BoundColumn DataField="class_hour" DataFormatString="{0:yyyy-MM-dd}" HeaderText="开课时间">
                        </asp:BoundColumn>
                        <asp:BoundColumn DataField="class_long" HeaderText="课时"></asp:BoundColumn>
                        <asp:BoundColumn DataField="class_info" HeaderText="课程信息"></asp:BoundColumn>
                        <asp:ButtonColumn CommandName="Delete" HeaderText="撤消申请" Text="撤消"></asp:ButtonColumn>
                    </Columns>
                </asp:DataGrid></td>
        </tr>
    </table>
</asp:Content>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?