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

📄 addtempcourse.aspx

📁 这是一个自动排课软件(包含源码,需求分析,详细设计).希望对你有所帮助.
💻 ASPX
字号:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="AddTempCourse.aspx.cs" Inherits="CourseManage_AddTempCourse" %>

<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>

<!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>
    <base target=_self />
</head>
<body bgcolor=Lavender>
    <form id="form1" runat="server">
    <div>
        <asp:ScriptManager ID="ScriptManager1" runat="server">
        </asp:ScriptManager>
        <br />
      <table align=center border="1"  style="border-collapse: collapse; border-style: dotted; border-width: 0px"  bordercolor="#333333" cellspacing="0" cellpadding="2">
                <tr>
                    <td  >
                        <asp:Label ID="Label1" runat="server" Text="课程名称" Font-Size="9pt"></asp:Label></td>
                    <td  >
                        &nbsp;<asp:DropDownList ID="DropDownList1" runat="server" DataSourceID="ObjectDataSource1"
                            DataTextField="TempCourseName" DataValueField="TempCourseID" Width="150px" Font-Size="9pt">
                        </asp:DropDownList><asp:ObjectDataSource ID="ObjectDataSource1" runat="server" SelectMethod="Select"
                            TypeName="BLL.BTempCourse"></asp:ObjectDataSource>
                    </td>
                </tr>
                <tr>
                    <td >
                        <asp:Label ID="Label2" runat="server" Text="授课老师" Font-Size="9pt"></asp:Label></td>
                    <td  >
                        &nbsp;<asp:DropDownList ID="DropDownList2" runat="server" Width="151px" DataSourceID="ObjectDataSource2" DataTextField="EmployeeName" DataValueField="EmployeeID" Font-Size="9pt">
                        </asp:DropDownList><asp:ObjectDataSource ID="ObjectDataSource2" runat="server" SelectMethod="TempSelect"
                            TypeName="BLL.BEmployee"></asp:ObjectDataSource>
                        &nbsp;
                    </td>
                </tr>
                <tr>
                    <td >
                        <asp:Label ID="Label3" runat="server" Text="授课日期" Font-Size="9pt"></asp:Label></td>
                    <td style="width: 197px; height: 33px;" >
                        <asp:TextBox ID="TextBox1" runat="server" Width="123px" Font-Size="9pt"></asp:TextBox>
                        <asp:Button ID="Button1" runat="server" Text="..." Width="24px" Font-Size="9pt" />
                        <cc1:CalendarExtender ID="CalendarExtender1" runat="server" PopupButtonID="Button1"
                            TargetControlID="TextBox1">
                        </cc1:CalendarExtender>
                    </td>
                </tr>
                <tr>
                    
                    <td colspan=2 align=center  valign="bottom">
                        &nbsp;&nbsp;
                        <asp:DropDownList ID="DropDownList3" runat="server" Font-Size="9pt">
                            <asp:ListItem Value="true">上午</asp:ListItem>
                            <asp:ListItem Value="false">下午</asp:ListItem>
                        </asp:DropDownList>&nbsp;
                        <asp:DropDownList ID="DropDownList4" runat="server" Font-Size="9pt">
                            <asp:ListItem Value="true">前</asp:ListItem>
                            <asp:ListItem Value="false">后</asp:ListItem>
                        </asp:DropDownList>&nbsp;
                        <asp:DropDownList ID="DropDownList5" runat="server" Font-Size="9pt">
                            <asp:ListItem>1</asp:ListItem>
                            <asp:ListItem>2</asp:ListItem>
                            <asp:ListItem>3</asp:ListItem>
                            <asp:ListItem>4</asp:ListItem>
                        </asp:DropDownList>
                        <asp:Label ID="Label4" runat="server" Text="节课" Font-Size="9pt"></asp:Label></td>
                </tr>
                <tr>
                   
                    <td colspan=2  align=center valign="bottom">
                        <asp:Button ID="Button2" runat="server" Text="确定" OnClick="Button2_Click" Font-Size="9pt" />&nbsp;
                        <asp:Button ID="Button3" runat="server" Text="取消" OnClick="Button3_Click" Font-Size="9pt" /></td>
                </tr>
            </table>
        
    
    </div>
    </form>
</body>
</html>

⌨️ 快捷键说明

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