-
Notifications
You must be signed in to change notification settings - Fork 2
/
Default.aspx
96 lines (93 loc) · 5.41 KB
/
Default.aspx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!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>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Wizard ID="SuperCopyWizard" runat="server" ActiveStepIndex="2" Height="336px" Width="655px" OnNextButtonClick="SuperCopyWizard_NextButtonClick" BackColor="#E6E2D8" BorderColor="#999999" BorderStyle="Solid" BorderWidth="1px" Font-Names="Verdana" Font-Size="0.8em" OnFinishButtonClick="SuperCopyWizard_FinishButtonClick" OnActiveStepChanged="SuperCopyWizard_ActiveStepChanged">
<WizardSteps>
<asp:WizardStep runat="server" Title="Select" ID="Start">
<table>
<tr>
<td colspan="2">
Current Channel:<br />
<asp:DropDownList ID="uxChannel" runat="server">
</asp:DropDownList>
</td>
</tr>
<tr valign =top>
<td>
Source Day:<br />
<asp:Calendar ID="uxSourceDay" runat="server" OnSelectionChanged="uxStartDate_SelectionChanged">
<TodayDayStyle BackColor="Silver" />
<SelectedDayStyle BackColor="Navy" />
</asp:Calendar>
<asp:Label ID="uxStartDateError" runat="server" ForeColor="Red"></asp:Label>
<br />
<asp:Label ID="uxNumberOfSourceRuns" runat="server" Text="Please select a source day to continue."></asp:Label>
</td>
<td>
End date:<br />
<asp:Calendar ID="uxEndDate" runat="server" OnSelectionChanged="uxEndDate_SelectionChanged">
<TodayDayStyle BackColor="Silver" />
<SelectedDayStyle BackColor="Navy" />
</asp:Calendar>
<asp:Label ID="uxEndDateError" runat="server" ForeColor="Red"></asp:Label>
</td>
</tr>
<tr>
<td colspan="2">
<asp:Label ID="uxDateCount" runat="server"></asp:Label>
</td>
</tr>
</table>
</asp:WizardStep>
<asp:WizardStep ID="Confirm" runat="server" Title="Confirm">
SuperCopy is ready to run.<br />
<br />
You are about to copy the programing on
<asp:Label ID="uxSourceDateName" runat="server"></asp:Label>
on
<asp:Label ID="uxCurrentChannelName" runat="server"></asp:Label>
.<br />
<p style="font-weight:bold; color:Red">The programing on
<asp:Label ID="uxChannelName2" runat="server"></asp:Label>
will be deleted, and replaced, from
<asp:Label ID="uxDestStartDate" runat="server"></asp:Label>
to
<asp:Label ID="uxDestEndDate" runat="server"></asp:Label>
.<p/>
If you are sure you want to do this, press Next</asp:WizardStep>
<asp:WizardStep ID="Review" runat="server" Title="Review">
Removed
<asp:Label ID="uxRemovedCount" runat="server"></asp:Label>
runs from the schedule.<br />
<br />
Added
<asp:Label ID="uxAddedCount" runat="server"></asp:Label>
runs to the schedule.<br />
<br />
<asp:Label ID="uxError" runat="server" ForeColor="Red"></asp:Label>
<br />
<br />
Click finish to return to the main menu.</asp:WizardStep>
</WizardSteps>
<HeaderTemplate>
Welcome to SuperCopy
</HeaderTemplate>
<StepStyle BackColor="#F7F6F3" BorderColor="#E6E2D8" BorderStyle="Solid" BorderWidth="2px" />
<SideBarStyle BackColor="#1C5E55" Font-Size="0.9em" VerticalAlign="Top" Width="100px"/>
<NavigationButtonStyle BackColor="White" BorderColor="#C5BBAF" BorderStyle="Solid"
BorderWidth="1px" Font-Names="Verdana" Font-Size="0.8em" ForeColor="#1C5E55" />
<SideBarButtonStyle ForeColor="White" />
<HeaderStyle BackColor="#666666" BorderColor="#E6E2D8" BorderStyle="Solid" BorderWidth="2px"
Font-Bold="True" Font-Size="0.9em" ForeColor="White" HorizontalAlign="Center" />
</asp:Wizard>
</div>
</form>
</body>
</html>