alt_plan.aspx

来自「项目开发完整系统」· ASPX 代码 · 共 65 行

ASPX
65
字号
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="alt_plan.aspx.cs" Inherits="teaching_manage_plan_alt_plan" %>

<!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>
    <link href="~/css/mm.css" rel="stylesheet" type="text/css" />
</head>
<body>
   <form id="form1" runat="server">
    <div>
        <br />
        <table style="width: 548px; height: 242px" border="1" cellpadding="0" cellspacing="0">
            <tr>
                <td colspan="3" style="text-align: center">
                    <strong>修改计划</strong></td>
            </tr>
            <tr>
                <td style="width: 100px; height: 29px; text-align: center">
                    标题</td>
                <td style="width: 61px; height: 29px">
                    <asp:TextBox ID="plan_title" runat="server"></asp:TextBox></td>
                <td style="width: 114px; height: 29px">
                    <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="plan_title"
                        ErrorMessage="标题不能为空"></asp:RequiredFieldValidator></td>
            </tr>
            <tr>
                <td style="width: 100px; text-align: center; height: 29px;">
                    <strong>类型</strong></td>
                <td style="width: 61px; height: 29px;">
                    <asp:DropDownList ID="plan_type" runat="server">
                    <asp:ListItem Selected="True">学科教学进度</asp:ListItem>
                        <asp:ListItem>班主任计划</asp:ListItem>
                        <asp:ListItem>年级计划</asp:ListItem>
                        <asp:ListItem>教学活动计划</asp:ListItem>
                        <asp:ListItem>教务工作计划</asp:ListItem>
                        <asp:ListItem>教研组工作计划</asp:ListItem>
                    </asp:DropDownList></td>
                <td style="width: 114px; height: 29px;">
                    </td>
            </tr>
            <tr>
                <td style="width: 100px; text-align: center; height: 17px;">
                    <strong>内容</strong></td>
                <td style="width: 61px; height: 17px;">
                    <asp:TextBox ID="plan_content" runat="server" TextMode="MultiLine" Height="177px"  Width="329px"></asp:TextBox></td>
                <td style="width: 114px; height: 17px;">
                    </td>
            </tr>
            <tr>
                <td style="width: 100px; height: 6px; text-align: center">
                </td>
                <td style="width: 61px; height: 6px">
                    <asp:Button ID="btn_altplan" runat="server" Text="保存" OnClick="btn_altplan_Click" /></td>
                <td style="width: 114px; height: 6px">
                </td>
            </tr>
        </table>
    
    </div>
    </form>
</body>
</html>

⌨️ 快捷键说明

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