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

📄 autoexercise.aspx

📁 用asp写的程序,在线考试系统,功能齐全,是一个非常好用的系统
💻 ASPX
字号:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="autoexercise.aspx.cs" Inherits="Students_autoexercise" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>无标题页</title>
</head>
<body style="text-align:center; vertical-align:middle">
    <form id="form1" runat="server">
        <asp:ScriptManager ID="ScriptManager1" runat="server">
        </asp:ScriptManager>
        在线练习--自动组卷
        <hr />
        &nbsp;
        <table  width="700px" style="border-right: buttonface thin solid; border-top: buttonface thin solid; border-left: buttonface thin solid; border-bottom: buttonface thin solid">
            <tr>
                <td width="200px" align="left">
                    科目选择:</td>
                <td width="500px" align="left">
                    组卷参数配置:</td>
            </tr>
            
            <tr>
                <td height="300px" style="border-right: buttonface thin solid; border-top: buttonface thin solid; border-left: buttonface thin solid; border-bottom: buttonface thin solid" align="left" valign="top">
                    <asp:ListBox ID="lbCourse" Width="100%" Height="300" runat="server" AutoPostBack="True" OnSelectedIndexChanged="lbCourse_SelectedIndexChanged"></asp:ListBox></td>
                <td height="300%" style="border-right: buttonface thin solid; border-top: buttonface thin solid; border-left: buttonface thin solid; border-bottom: buttonface thin solid" align="left" valign="top">
                    <asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional" >
                        <ContentTemplate>
                            <table width="500" height="300">
                                <tr>
                                    <td align="left" valign="top" height="280">
                                        <asp:GridView ID="gvSytles" runat="server" Width="100%" AutoGenerateColumns="False">
                                            <Columns>
                                                <asp:TemplateField HeaderText="选择" ShowHeader="False">
                                                    <ItemTemplate>
                                                        <asp:CheckBox ID="cbStyle" runat="server" OnCheckedChanged="cbStyle_CheckedChanged" AutoPostBack="True" />
                                                    </ItemTemplate>
                                                </asp:TemplateField>
                                                <asp:BoundField HeaderText="题型" DataField="sname" ShowHeader="False" />
                                                <asp:BoundField HeaderText="题型代号" DataField="sid" ShowHeader="False" />
                                                <asp:TemplateField HeaderText="难度选择" ShowHeader="False">
                                                    <ItemTemplate>
                                                        <asp:DropDownList ID="dblLevel" runat="server" Width="60px">
                                                        </asp:DropDownList>
                                                    </ItemTemplate>
                                                </asp:TemplateField>
                                                <asp:TemplateField HeaderText="题量" ShowHeader="False">
                                                    <ItemTemplate>
                                                        <asp:TextBox ID="tbNum" runat="server" Width="59px"></asp:TextBox>
                                                    </ItemTemplate>
                                                </asp:TemplateField>
                                            </Columns>
                                        </asp:GridView>
                                        <asp:Label ID="lblMessage" runat="server" Text=""></asp:Label></td>
                                </tr>
                                <tr>
                                    <td height="20" style="border-top: buttonface thin solid">
                                        该课程题量信息:<asp:Label ID="lblStyleMess" runat="server" Text="(还未选择)"></asp:Label></td>
                                </tr>
                            </table>
                        </ContentTemplate>
                    </asp:UpdatePanel>
                </td>
            </tr>
        </table>
        <br />
        <asp:Button ID="btnExercise" runat="server" Text="自动组卷" OnClick="btnExercise_Click" />
    </form>
</body>
</html>

⌨️ 快捷键说明

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