📄 timeplans.aspx
字号:
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="TimePlans.aspx.cs" Inherits="TimePlans" Title="时间维护" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<asp:Label ID="lblErr" runat="server" ForeColor="Red"></asp:Label><br />
<br />
<asp:ScriptManager id="ScriptManager1" runat="server" EnablePageMethods="True" EnableScriptGlobalization="True"
EnableScriptLocalization="True">
</asp:ScriptManager>
<asp:UpdatePanel id="UpdatePanel1" runat="server">
<contenttemplate>
<table cellpadding=0 border=0 cellspacing=0>
<tr>
<td style="width: 100px">
<asp:Label ID="Label1" runat="server" Font-Size="12px" Text="已有时间安排"></asp:Label></td>
<td style="width: 100px">
<asp:Label ID="Label2" runat="server" Font-Size="12px" Text="时间安排类别"></asp:Label>
</td>
<td style="width: 240px">
<asp:TextBox ID="TextBox1" runat="server" Width="100px"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 100px">
<asp:ListBox ID="ListBox1" runat="server" AutoPostBack="True" DataSourceID="ObjectDataSource1" DataTextField="TimePlanName" DataValueField="TimePlanID" Height="170px" OnSelectedIndexChanged="ListBox1_SelectedIndexChanged" Font-Size="12px" Font-Underline="False"></asp:ListBox><asp:ObjectDataSource ID="ObjectDataSource1" runat="server" SelectMethod="Select"
TypeName="BLL.BTimePlan"></asp:ObjectDataSource>
</td>
<td style="width: 100px" align=center>
<asp:Button ID="Button1" runat="server" Font-Size="12px" OnClick="Button1_Click"
Text="删 除" /><br />
<br />
<asp:Button ID="Button2" runat="server" Font-Size="12px" Text="新增安排" OnClick="Button2_Click" /></td>
<td style="width: 240px">
<table cellpadding="0" cellspacing="0">
<tr>
<td style="width: 100px">
<asp:Label ID="Label3" runat="server" Font-Size="12px" Text="周日"></asp:Label></td>
<td style="width: 100px">
<asp:CheckBox ID="ckbSundayAm" runat="server" Font-Size="12px" Text=" 上午" /></td>
<td style="width: 100px">
<asp:CheckBox ID="ckbSundayPM" runat="server" Font-Size="12px" Text="下午" /></td>
</tr>
<tr>
<td style="width: 100px; height: 20px;">
<asp:Label ID="Label4" runat="server" Font-Size="12px" Text="周一"></asp:Label></td>
<td style="width: 100px; height: 20px;">
<asp:CheckBox ID="ckbMondayAm" runat="server" Font-Size="12px" Text=" 上午" /></td>
<td style="width: 100px; height: 20px;">
<asp:CheckBox ID="ckbMondayPm" runat="server" Font-Size="12px" Text="下午" /></td>
</tr>
<tr>
<td style="width: 100px; height: 22px">
<asp:Label ID="Label5" runat="server" Font-Size="12px" Text="周二"></asp:Label></td>
<td style="width: 100px; height: 22px">
<asp:CheckBox ID="ckbTuesdayAm" runat="server" Font-Size="12px" Text=" 上午" /></td>
<td style="width: 100px; height: 22px">
<asp:CheckBox ID="ckbTuesdayPm" runat="server" Font-Size="12px" Text="下午" /></td>
</tr>
<tr>
<td style="width: 100px; height: 22px">
<asp:Label ID="Label6" runat="server" Font-Size="12px" Text="周三"></asp:Label></td>
<td style="width: 100px; height: 22px">
<asp:CheckBox ID="ckbWednesdayAm" runat="server" Font-Size="12px" Text=" 上午" /></td>
<td style="width: 100px; height: 22px">
<asp:CheckBox ID="ckbWednesdayPm" runat="server" Font-Size="12px" Text="下午" /></td>
</tr>
<tr>
<td style="width: 100px; height: 22px">
<asp:Label ID="Label7" runat="server" Font-Size="12px" Text="周四"></asp:Label></td>
<td style="width: 100px; height: 22px">
<asp:CheckBox ID="ckbThursdayAm" runat="server" Font-Size="12px" Text=" 上午" /></td>
<td style="width: 100px; height: 22px">
<asp:CheckBox ID="ckbThursdayPm" runat="server" Font-Size="12px" Text="下午" /></td>
</tr>
<tr>
<td style="width: 100px; height: 20px;">
<asp:Label ID="Label8" runat="server" Font-Size="12px" Text="周五"></asp:Label></td>
<td style="width: 100px; height: 20px;">
<asp:CheckBox ID="ckbFridayAm" runat="server" Font-Size="12px" Text=" 上午" /></td>
<td style="width: 100px; height: 20px;">
<asp:CheckBox ID="ckbFridayPm" runat="server" Font-Size="12px" Text="下午" /></td>
</tr>
<tr>
<td style="width: 100px">
<asp:Label ID="Label9" runat="server" Font-Size="12px" Text="周六"></asp:Label></td>
<td style="width: 100px">
<asp:CheckBox ID="ckbSaturdayAm" runat="server" Font-Size="12px" Text=" 上午" /></td>
<td style="width: 100px">
<asp:CheckBox ID="ckbSaturdayPm" runat="server" Font-Size="12px" Text="下午" /></td>
</tr>
</table>
<asp:Button ID="Button3" runat="server" Font-Size="12px" OnClick="Button3_Click"
Text="确定修改" /> </td>
</tr>
</table></contenttemplate>
</asp:UpdatePanel>
</asp:Content>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -