-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVideoConfView.aspx
158 lines (155 loc) · 5.62 KB
/
VideoConfView.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<%@ Page Title="View Video Schedule" Language="VB" MasterPageFile="~/MasterPage.master" AutoEventWireup="false" CodeFile="VideoConfView.aspx.vb" Inherits="VideoConfView" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table width="100%" border="0" class="HomeBackground">
<tr>
<td colspan="5" style="font-style:oblique; font-size:xx-large; font-family:Matura MT Script Capitals; color:Green">
<asp:Label ID="lblTitle" runat="server" Text="View Scheduled Video Conferances"></asp:Label>
</td>
</tr>
<tr>
<td class="style5" colspan="2"> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td class="style6">Select Date</td>
<td class="style5" valign="top">
<asp:TextBox ID="txtVideoCDate" runat="server" Width="150px"></asp:TextBox>
<asp:ImageButton ID="ImgbtnCal" runat="server"
ImageUrl="~/Images/Buttons/Button_Reg/Calender.png" Height="23px"
Width="25px" />
</td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td class="style6"> </td>
<td class="style5">
<asp:Calendar ID="Calendar1" runat="server" BackColor="White"
BorderColor="#3366CC" BorderWidth="1px" CellPadding="1"
DayNameFormat="Shortest" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" Height="200px" Width="220px">
<SelectedDayStyle BackColor="#009999" Font-Bold="True" ForeColor="#CCFF99" />
<SelectorStyle BackColor="#99CCCC" ForeColor="#336666" />
<WeekendDayStyle BackColor="#CCCCFF" />
<TodayDayStyle BackColor="#99CCCC" ForeColor="White" />
<OtherMonthDayStyle ForeColor="#999999" />
<NextPrevStyle Font-Size="8pt" ForeColor="#CCCCFF" />
<DayHeaderStyle BackColor="#99CCCC" ForeColor="#336666" Height="1px" />
<TitleStyle BackColor="#003399" BorderColor="#3366CC" BorderWidth="1px"
Font-Bold="True" Font-Size="10pt" ForeColor="#CCCCFF" Height="25px" />
</asp:Calendar>
</td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td class="style6"> </td>
<td class="style5">
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server"
ControlToValidate="txtVideoCDate" ErrorMessage="Select a Appropriate Date"></asp:RequiredFieldValidator>
</td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td class="style5" colspan="2">
</td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td class="style6"></td>
<td class="style5" style="font-style:oblique; font-size:x-large; font-family:Matura MT Script Capitals; color:Green">
<asp:Label ID="lblATime" runat="server" Text="Scheduled Times" Visible="false"></asp:Label>
</td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td class="style6"> </td>
<td class="style5">
</td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td class="style6"></td>
<td class="style5">
<asp:GridView ID="gdviewDoctor" runat="server" CellPadding="4" ForeColor="#333333" AutoGenerateColumns="false"
GridLines="None" Width="100%" EnableViewState="false" OnPageIndexChanging="gdviewDoctor_PageIndexChanging" OnRowCommand="gdviewDoctor_RowCommand">
<RowStyle BackColor="#E3EAEB" />
<FooterStyle BackColor="#1C5E55" Font-Bold="True" ForeColor="White" />
<PagerStyle BackColor="#666666" ForeColor="White" HorizontalAlign="Center" />
<SelectedRowStyle BackColor="#C5BBAF" Font-Bold="True" ForeColor="#333333" />
<HeaderStyle BackColor="#1C5E55" Font-Bold="True" ForeColor="White" />
<EditRowStyle BackColor="#7C6F57" />
<AlternatingRowStyle BackColor="White" />
<Columns>
<asp:BoundField DataField="DID" HeaderText="Doctor ID" />
<asp:BoundField DataField="PID" HeaderText="Patient ID"/>
<asp:BoundField DataField="PDate" HeaderText="Date"/>
<asp:BoundField DataField="PTime" HeaderText="Time"/>
<asp:BoundField DataField="Confirm" HeaderText="Doctor Confirmation"/>
<asp:BoundField DataField="ConfTime" HeaderText="Confirmed Time"/>
<asp:BoundField DataField="ConfP" HeaderText="Patient Confirmation"/>
</Columns>
</asp:GridView>
</td>
<td>
</td>
<td> </td>
<td> </td>
</tr>
<tr>
<td class="style6"> </td>
<td class="style5">
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td class="style6"> </td>
<td class="style5">
</td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td class="style6"> </td>
<td class="style5">
</td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td class="style5" colspan="2"> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td class="style5" colspan="2"> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td class="style5" colspan="2"> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
</asp:Content>