ucteachergivepapers.ascx

来自「在线 图书网上购物系统」· ASCX 代码 · 共 50 行

ASCX
50
字号
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="ucTeacherGivePapers.ascx.cs" Inherits="UserControls_ucTeacherGivePapers" %>
<table>
    <tr>
        <td colspan="5" style="text-align: center">
            教师提供论文题目</td>
    </tr>
    <tr>
        <td style="width: 100px; height: 21px">
            题目</td>
        <td colspan="4" style="height: 21px">
            <asp:TextBox ID="tbTitle" runat="server" Width="403px"></asp:TextBox></td>
    </tr>
    <tr>
        <td style="width: 100px; height: 22px">
            说明</td>
        <td colspan="4" style="height: 22px">
            <asp:TextBox ID="tbDescription" runat="server" Height="128px" TextMode="MultiLine" Width="403px"></asp:TextBox></td>
    </tr>
    <tr>
        <td style="width: 100px; height: 21px">
            参考文献</td>
        <td colspan="4" style="height: 21px">
            <asp:TextBox ID="tbReference" runat="server" Height="122px" TextMode="MultiLine" Width="403px"></asp:TextBox></td>
    </tr>
    <tr>
        <td style="height: 26px; text-align: center;" colspan="5">
            <asp:Button ID="btnAdd" runat="server" Text="添加" OnClick="btnAdd_Click" />
            &nbsp;<asp:Button ID="btnCancel" runat="server" Text="取消" />
            <asp:Label ID="lbMsg" runat="server" EnableViewState="False" ForeColor="Red"></asp:Label></td>
    </tr>
    <tr>
        <td colspan="5" style="height: 26px">
            <asp:GridView ID="dvCandidatePapers" runat="server" Width="513px" AutoGenerateColumns="False" OnRowCommand="dvCandidatePapers_RowCommand" >
                <Columns>
                    <asp:TemplateField>
                        <ItemTemplate>
                            <asp:LinkButton ID="LinkButton1" runat="server"  CommandArgument='<%# Eval("CandidatePaperID")%>' CommandName="Display">查看</asp:LinkButton>
                            <asp:LinkButton ID="LinkButton2" runat="server" CommandArgument='<%# Eval("CandidatePaperID")%>' OnClientClick="return confirm('确定删除吗?')" CommandName="Del">删除</asp:LinkButton>
                        </ItemTemplate>
                    </asp:TemplateField>
                    <asp:BoundField DataField="Title" HeaderText="题目" />
                    <asp:BoundField DataField="Description" HeaderText="说明" />
                    <asp:BoundField DataField="Reference" HeaderText="参考文献" />
                    <asp:BoundField DataField="DateTime" HeaderText="时间" />
                </Columns>
            </asp:GridView>
        </td>
    </tr>
</table>

⌨️ 快捷键说明

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