温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:破竹CMS4.0免安装版源码
当前文件:
PozhuCMS/admin/Scheduling/EditSchedule.aspx,打开代码结构图
PozhuCMS/admin/Scheduling/EditSchedule.aspx,打开代码结构图1<%@ Page Language="C#" MasterPageFile="~/admin/Manage.master" AutoEventWireup="true" CodeFile="EditSchedule.aspx.cs" Inherits="admin_Scheduling_EditSchedule" Title="Untitled Page" %> 2
<asp:Content ID="Content1" ContentPlaceHolderID="cphMain" Runat="Server"> 3
<div id="tabChildMenu"> 4
<a href="ViewSchedules.aspx"><span class="icon_back">返回</span></a> 5
</div> 6
<asp:Panel ID="plActionMessage" runat="server" > 7
</asp:Panel> 8
<asp:Panel ID="pnlScheduleItem" runat="server"> 9
<table border="0" cellpadding="3" cellspacing="0" summary="Edit Schedule" > 10
<tr valign="top"> 11
<td class="SubHead" width="150"> 12
任务计划类的全称: 13
</td> 14
<td class="Normal"> 15
<asp:TextBox ID="txtType" runat="server" Width="450"></asp:TextBox></td> 16
</tr> 17
<tr valign="top"> 18
<td class="SubHead" width="150"> 19
是否启用: 20
</td> 21
<td class="Normal"> 22
<asp:CheckBox ID="chkEnabled" runat="server" Text="Yes" /></td> 23
</tr> 24
<tr valign="top"> 25
<td class="SubHead" width="150"> 26
运行周期 27
</td> 28
<td class="Normal"> 29
<asp:TextBox ID="txtTimeLapse" runat="server" CssClass="NormalTextBox" MaxLength="10" Width="50"></asp:TextBox> 30
<asp:DropDownList ID="ddlTimeLapseMeasurement" runat="server"> 31
<asp:ListItem Value="s">Seconds</asp:ListItem> 32
<asp:ListItem Value="m">Minutes</asp:ListItem> 33
<asp:ListItem Value="h">Hours</asp:ListItem> 34
<asp:ListItem Value="d">Days</asp:ListItem> 35
</asp:DropDownList></td> 36
</tr> 37
<tr valign="top"> 38
<td class="SubHead" width="150"> 39
重试 40
</td> 41
<td class="Normal"> 42
<asp:TextBox ID="txtRetryTimeLapse" runat="server" CssClass="NormalTextBox" MaxLength="10" Width="50"></asp:TextBox> 43
<asp:DropDownList ID="ddlRetryTimeLapseMeasurement" runat="server"> 44
<asp:ListItem Value="s">Seconds</asp:ListItem> 45
<asp:ListItem Value="m">Minutes</asp:ListItem> 46
<asp:ListItem Value="h">Hours</asp:ListItem> 47
<asp:ListItem Value="d">Days</asp:ListItem> 48
</asp:DropDownList></td> 49
</tr> 50
<tr valign="top"> 51
<td class="SubHead" width="150"> 52
历史记录 53
</td> 54
<td class="Normal"> 55
<asp:DropDownList ID="ddlRetainHistoryNum" runat="server"> 56
<asp:ListItem Value="0">None</asp:ListItem> 57
<asp:ListItem Value="1">1</asp:ListItem> 58
<asp:ListItem Value="5">5</asp:ListItem> 59
<asp:ListItem Value="10">10</asp:ListItem> 60
<asp:ListItem Value="25">25</asp:ListItem> 61
<asp:ListItem Value="50">50</asp:ListItem> 62
<asp:ListItem Value="100">100</asp:ListItem> 63
<asp:ListItem Value="250">250</asp:ListItem> 64
<asp:ListItem Value="500">500</asp:ListItem> 65
<asp:ListItem Value="-1">All</asp:ListItem> 66
</asp:DropDownList></td> 67
</tr> 68
<tr valign="top"> 69
<td class="SubHead" width="150"> 70
任务的启动方式: 71
</td> 72
<td class="Normal"> 73
<asp:DropDownList ID="ddlAttachToEvent" runat="server" CssClass="NormalTextBox"> 74
<asp:ListItem Value="">None</asp:ListItem> 75
<asp:ListItem Value="APPLICATION_START">Application Start</asp:ListItem> 76
</asp:DropDownList></td> 77
</tr> 78
<tr valign="top"> 79
<td class="SubHead" width="150"> 80
Catch Up Enabled: 81
</td> 82
<td class="Normal"> 83
<asp:CheckBox ID="chkCatchUpEnabled" runat="server" Text="Yes" /></td> 84
</tr> 85
<tr valign="top"> 86
<td class="SubHead" width="150"> 87
Object Dependencies: 88
</td> 89
<td class="Normal"> 90
<asp:TextBox ID="txtObjectDependencies" runat="server" CssClass="NormalTextBox" MaxLength="150" Width="390"></asp:TextBox></td> 91
</tr> 92
<tr valign="top"> 93
<td class="SubHead" width="150"> 94
Run on Servers: 95
</td> 96
<td class="Normal"> 97
<asp:TextBox ID="txtServers" runat="server" CssClass="NormalTextBox" MaxLength="150" Width="390"></asp:TextBox></td> 98
</tr> 99
</table> 100
<p> 101
<asp:LinkButton ID="cmdUpdate" runat="server" CssClass="edit" OnClick="cmdUpdate_Click" >更新</asp:LinkButton> 102
<asp:LinkButton ID="cmdDelete" runat="server" CssClass="delete" OnClick="cmdDelete_Click" >删除</asp:LinkButton> 103
<asp:LinkButton ID="cmdCancel" runat="server" CssClass="cancel" OnClick="cmdCancel_Click" >取消</asp:LinkButton></p> 104
</asp:Panel> 105
</asp:Content> 106
107




