editor.aspx
来自「毕业设计内容: 1、 作者投稿功能 2、 专家审稿 3、 系统管理员对所有稿件的」· ASPX 代码 · 共 37 行
ASPX
37 行
<%@ 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="添加" />
</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 + =
减小字号Ctrl + -
显示快捷键?