⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 editor.aspx

📁 毕业设计内容: 1、 作者投稿功能 2、 专家审稿 3、 系统管理员对所有稿件的管理功能 管理权限设置:分为三级权限。包括用户:添加文章、查询自己稿件的审稿情况、审稿意见、查看个人资料等 专家:审批文
💻 ASPX
字号:
<%@ Page Language="C#" MasterPageFile="~/admin/admin.master" AutoEventWireup="true" CodeFile="editor.aspx.cs" Inherits="admin_editor" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server"> <table border="0" cellpadding="0" cellspacing="0" width="100%" style="font-size: 12px">
        <tr>
            <td align="center" colspan="4" style="height: 15px; background-color: #6699ff">
                安排专家进行审稿</td>
        </tr>
        <tr>
            <td style="width: 99px; height: 25px">
                所有专家:</td>
            <td colspan="3" style="height: 25px">
                <asp:DropDownList ID="DropDownList1" runat="server" DataSourceID="SqlDataSource1"
                    DataTextField="Expert_name" DataValueField="Expert_id" Width="121px">
                </asp:DropDownList>
            </td>
        </tr>
        <tr>
            <td style="width: 99px; height: 25px">
                所有类别:</td>
            <td colspan="3">
                <asp:DropDownList ID="DropDownList2" runat="server" DataSourceID="SqlDataSource2"
                    DataTextField="Class_name" DataValueField="Id" Width="121px">
                </asp:DropDownList>
            </td>
        </tr>
        <tr>
            <td style="height: 25px" align="center" colspan="4">
                <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="添加" />&nbsp;
            </td>
        </tr>
    </table>
    <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:fileConnectionString %>"
        SelectCommand="SELECT * FROM [Expert]"></asp:SqlDataSource>
    <asp:SqlDataSource ID="SqlDataSource2" runat="server" ConnectionString="<%$ ConnectionStrings:fileConnectionString %>"
        SelectCommand="SELECT * FROM [Class]"></asp:SqlDataSource>
</asp:Content>

⌨️ 快捷键说明

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