-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPart1.aspx
395 lines (345 loc) · 28.9 KB
/
Part1.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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Part1.aspx.cs" Inherits="Nephro_Care.Part1" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<link rel="stylesheet" href="styling/Backgroound.css" type="text/css" />
<link rel="stylesheet" href="styling/Theme.css" type="text/css" />
<link rel="stylesheet" href="styling/popup_ajax.css" type="text/css" />
<link rel="stylesheet" href="styling/menu.css" type="text/css" />
<link rel="stylesheet" href="styling/footer.css" type="text/css" />
</head>
<body>
<div>
<br />
<asp:Label runat ="server" Font-Size ="50" Font-Italic ="true" Font-Bold ="true" Align ="Center">NephroCare</asp:Label>
<br />
<br />
</div>
<form id="form1" runat="server">
<div>
<%-- popup start --%>
<asp:ScriptManager runat="server" />
<asp:LinkButton ID="lnkDummy" runat="server"></asp:LinkButton>
<cc1:ModalPopupExtender ID="ModalPopupExtender1" BehaviorID="mpe" runat="server"
PopupControlID="pnlPopup" TargetControlID="lnkDummy" BackgroundCssClass="modalBackground" CancelControlID = "btnHide">
</cc1:ModalPopupExtender>
<asp:Panel ID="pnlPopup" runat="server" CssClass="modalPopup" Style="display: none" Width="400px" Height="400px">
<div class="header">
<asp:label runat="server" id="lblpopup" ForeColor="Red" BorderColor="White" />
<asp:Image runat="server" ID="img" ImageAlign="AbsMiddle" Width="100px" Height="100px" ImageUrl="~/styling/Loading.gif" Visible="false" />
<asp:Button ID="btnHide" runat="server" Text="exit" />
<asp:LinkButton runat="server" Text="check data" PostBackUrl="~/Part3.aspx" />
</div>
</asp:Panel>
<div>
<ul>
<li><a href="Home.aspx">Home</a></li>
<li class="dropdown">
<a href="javascript:void(0)" class="dropbtn">Registration</a>
<div class="dropdown-content" id="con">
<a href="part1.aspx">Common Details</a>
<a href="part2.aspx">Medical Details-2</a>
<a href="part3.aspx">Medical Details-3</a>
</div>
</li>
<li><a href="RecpDetails.aspx">Report</a></li>
<li style="margin-left:680px">
<asp:Button CausesValidation="false" runat ="server" ID ="login" BackColor ="Black" ForeColor ="White" Font-Size ="130%" OnClick ="Unnamed_Click1" Text ="Logout" Width ="70px" Height="40px" />
</li>
</ul>
</div>
<%-- popup complete --%>
</div>
<div>
<div id="centerpage" align="center">
<table>
<tr><td>
<asp:Table ID="Table1" runat="server" Font-Size="Large" Width="654px" Font-Names="Palatino"
ForeColor="Snow" CellPadding="5" CellSpacing="0" Align ="left" style="margin-left: 0px; margin-bottom: 0px">
<asp:TableRow ID="TableRow1" runat="server" BackColor="#dfe3ee" ForeColor ="Black" >
<asp:TableCell><asp:Label text ="Aadhar Number" runat="server" align ="left"></asp:Label></asp:TableCell>
<asp:TableCell><asp:TextBox TextMode="Number" ID="AadharNumbertxt" runat="server" Width ="200px" Align ="left"></asp:TextBox>
<asp:RequiredFieldValidator runat="server" BackColor="Red" Text="Must Enter Aadhar Number" ControlToValidate="AadharNumbertxt" />
</asp:TableCell>
<asp:TableCell><asp:Label Visible="false" ID="lblmsg" runat="server" align ="left"></asp:Label></asp:TableCell>
<asp:TableCell><asp:Label text ="OPNO" runat="server"></asp:Label></asp:TableCell>
<asp:TableCell><asp:TextBox ID="OPNOtxt" runat="server" align ="center"></asp:TextBox></asp:TableCell>
<asp:TableCell>Upload photo</asp:TableCell>
<asp:TableCell><asp:FileUpload runat="server" ID="fppic1" BackColor="White" /></asp:TableCell>
</asp:TableRow>
</asp:Table> </td>
</tr>
<tr><td>
<h3 style="color:MidnightBlue; font-style:italic;">PREVIOUS ADMISSION DETAILS</h3>
</td></tr>
<tr><td>
<asp:Table ID ="table12" runat ="server" Font-Size="Large" Width="48px" Font-Names="Palatino" ForeColor ="Snow"
CellPadding="8" CellSpacing="2" Align ="left" Height="23px" style="margin-left: 0px">
<asp:TableRow>
<asp:TableCell ID="TableRow57" runat="server" BackColor="#dfe3ee" ForeColor ="Black">
<asp:Label Text ="IPNO" runat ="server"></asp:Label>
</asp:TableCell>
<asp:TableCell ID="TableRow58" runat="server" BackColor="#dfe3ee" ForeColor ="Black">
<asp:Label Text ="DOA" runat ="server"></asp:Label>
</asp:TableCell>
<asp:TableCell ID="TableRow59" runat="server" BackColor="#dfe3ee" ForeColor ="Black">
<asp:Label Text ="DOD" runat ="server"></asp:Label>
</asp:TableCell>
<asp:TableCell ID="TableRow60" runat="server" BackColor="#dfe3ee" ForeColor ="Black">
<asp:Label Text ="Diagnosis" runat ="server"></asp:Label>
</asp:TableCell>
<asp:TableCell ID="TableRow61" runat="server" BackColor="#dfe3ee" ForeColor ="Black">
<asp:Label Text ="SCreatinine" runat ="server"></asp:Label>
</asp:TableCell>
<asp:TableCell ID="TableRow62" runat="server" BackColor="#dfe3ee" ForeColor ="Black">
<asp:Label Text ="UProtein" runat ="server"></asp:Label>
</asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell ID="TableRow63" runat="server" BackColor="#dfe3ee" ForeColor ="Black">
<asp:TextBox id="ipnotxt" Runat="server" />
</asp:TableCell><asp:TableCell ID="TableRow64" runat="server" BackColor="#dfe3ee" ForeColor ="Black">
<asp:TextBox id="doatxt" Runat="server" />
</asp:TableCell><asp:TableCell ID="TableRow65" runat="server" BackColor="#dfe3ee" ForeColor ="Black">
<asp:TextBox id="dodtxt" Runat="server" />
</asp:TableCell><asp:TableCell ID="TableRow66" runat="server" BackColor="#dfe3ee" ForeColor ="Black">
<asp:TextBox id="diagnosistxt" Runat="server" />
</asp:TableCell><asp:TableCell ID="TableRow67" runat="server" BackColor="#dfe3ee" ForeColor ="Black">
<asp:TextBox id="screatininetxt" Runat="server" />
</asp:TableCell><asp:TableCell ID="TableRow68" runat="server" BackColor="#dfe3ee" ForeColor ="Black">
<asp:TextBox id="uproteintxt" Runat="server" />
</asp:TableCell></asp:TableRow></asp:Table><br />
</td></tr>
<tr><td>
<asp:Button id="btnSubmit" Text="Update" OnClick="btnSubmit_Click" Runat="server" Height ="30px" Width ="100px" />
</td></tr>
<tr><td>
<asp:GridView id="grdMovies" DataSourceID="p1grd" Runat="server" Font-Size="Large" Width="337px" Font-Names="Palatino" ForeColor ="Snow"
CellPadding="8" CellSpacing="2" Align ="left" Height="50px"><EmptyDataTemplate>
</p>
<asp:DetailsView id="mov" DataSourceID="p1grd" AutoGenerateInsertButton="true" AutoGenerateRows="false" Runat="server">
<Fields>
<asp:BoundField HeaderText="Ipno" DataField="ipno"/>
<asp:BoundField HeaderText="DOA" DataField="DOA" />
<asp:BoundField HeaderText="DOD" DataField="DOD" />
<asp:BoundField HeaderText="Diagnosis" DataField="diagnosis" />
<asp:BoundField HeaderText="SCreatine" DataField="Screatinine" />
<asp:BoundField HeaderText="UProtein" DataField="uprotien" />
</Fields>
</asp:DetailsView>
</EmptyDataTemplate>
<FooterStyle Font-Bold="True" BackColor="#dfe3ee" ForeColor ="Black"/>
<HeaderStyle Font-Bold="True" BackColor="#dfe3ee" ForeColor ="Black"/>
<PagerStyle BackColor="#dfe3ee" ForeColor ="Black" HorizontalAlign="Center" />
<RowStyle BackColor="#dfe3ee" ForeColor ="Black" />
<SelectedRowStyle Font-Bold="True" BackColor="#dfe3ee" ForeColor ="Black"/>
<SortedAscendingCellStyle BackColor="#dfe3ee" />
<SortedAscendingHeaderStyle BackColor="#dfe3ee" />
<SortedDescendingCellStyle BackColor="#dfe3ee" />
<SortedDescendingHeaderStyle BackColor="#dfe3ee" />
</asp:GridView>
<asp:SqlDataSource ID="p1grd" ConnectionString="<%$ ConnectionStrings:NephroCare %>" SelectCommand="SELECT ip_no, DOA, DOD,Diagnosis, S_Creatinine_at_discharge, [24hrs_UProtein] FROM part1_gridview1 where Adhar=@adhar " InsertCommand="INSERT into part1_gridview1 (Adhar,ip_no, DOA, DOD,Diagnosis, S_Creatinine_at_discharge, [24hrs_UProtein]) VALUES (@id,@IP_NO, @DateOfAdmission,@DateOfDischarge,@Diagnosis,@S_Creatinine_at_discharge,@uop)" Runat="server">
<SelectParameters>
<asp:formparameter name="Adhar" formfield="AadharNumbertxt" />
</SelectParameters>
<InsertParameters>
<asp:formparameter name="Id" formfield="AadharNumbertxt" />
<asp:formparameter name="IP_NO" formfield="ipnotxt" />
<asp:formparameter name="DateOfAdmission" formfield="doatxt" />
<asp:formparameter name="DateOfDischarge" formfield="dodtxt" />
<asp:formparameter name="Diagnosis" formfield="diagnosistxt" />
<asp:formparameter name="S_Creatinine_at_discharge" formfield="screatininetxt" />
<asp:formparameter name="uop" formfield="uproteintxt" />
</InsertParameters>
</asp:SqlDataSource>
</td></tr>
<tr><td>
<h3 style="color:MidnightBlue; font-style:italic;">PERSONAL DETAILS</h3></td></tr><tr><td>
<asp:Table ID="Table2" runat="server" Font-Size="Large" Width="615px" Font-Names="Palatino"
ForeColor="Snow" CellPadding="8" CellSpacing="0" Align ="left">
<asp:TableRow ID="TableRow2" runat="server" BackColor="#dfe3ee" ForeColor ="Black" >
<asp:TableCell><asp:Label text ="Name" runat="server"></asp:Label></asp:TableCell><asp:TableCell><asp:TextBox ID="Nametxt" runat="server"></asp:TextBox></asp:TableCell><asp:TableCell><asp:Label text ="Age" runat="server"></asp:Label></asp:TableCell><asp:TableCell><asp:TextBox ID="Agetxt" runat="server"></asp:TextBox></asp:TableCell><asp:TableCell><asp:Label text ="Gender" runat="server"></asp:Label></asp:TableCell><asp:TableCell><asp:RadioButtonList ID="Gender" runat ="server" RepeatDirection ="Horizontal">
<asp:ListItem Text ="Female" Value ="Female"></asp:ListItem>
<asp:ListItem Text ="Male" Value ="Male"></asp:ListItem>
</asp:RadioButtonList></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow3" runat="server" BackColor="#dfe3ee" ForeColor ="Black" >
<asp:TableCell><asp:Label text ="First Name" runat="server"></asp:Label></asp:TableCell><asp:TableCell><asp:TextBox ID="FirstNametxt" runat="server"></asp:TextBox></asp:TableCell><asp:TableCell><asp:Label text ="FamilyName" runat="server"></asp:Label></asp:TableCell><asp:TableCell><asp:TextBox ID="FamilyNametxt" runat="server"></asp:TextBox></asp:TableCell><asp:TableCell><asp:Label text ="Date Of Birth" runat="server"></asp:Label></asp:TableCell><asp:TableCell><asp:TextBox ID="DateOfBirthtxt" runat="server"></asp:TextBox></asp:TableCell></asp:TableRow></asp:Table></td></tr><tr><td>
<asp:Table ID="Table3" runat="server" Font-Size="Large" Width="811px" Font-Names="Palatino"
ForeColor="Snow" CellPadding="5" CellSpacing="0" Align ="left" style="margin-left: 0px; margin-bottom: 0px" Height="72px">
<asp:TableRow ID="TableRow4" runat="server" BackColor="#dfe3ee" ForeColor ="Black" >
<asp:TableCell><asp:Label text ="Address:" runat="server"></asp:Label></asp:TableCell><asp:TableCell><asp:TextBox ID="Addresstxt" runat="server" Width ="600px" Height ="100px" Align ="right"></asp:TextBox></asp:TableCell></asp:TableRow></asp:Table></td></tr><tr><td>
<asp:Table ID="Table4" runat="server" Font-Size="Large" Width="807px" Font-Names="Palatino"
ForeColor="Snow" CellPadding="5" CellSpacing="0" Align ="left">
<asp:TableRow ID="TableRow5" runat="server" BackColor="#dfe3ee" ForeColor ="Black" >
<asp:TableCell><asp:Label text ="Phone/Mobile No." runat="server"></asp:Label></asp:TableCell><asp:TableCell><asp:TextBox ID="PhoneNotxt" runat="server"></asp:TextBox></asp:TableCell><asp:TableCell><asp:Label text ="EmailId" runat="server"></asp:Label></asp:TableCell><asp:TableCell><asp:TextBox ID="EmailIdtxt" runat="server"></asp:TextBox></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow6" runat="server" BackColor="#dfe3ee" ForeColor ="Black" >
<asp:TableCell><asp:Label text ="Education" runat="server"></asp:Label></asp:TableCell><asp:TableCell><asp:TextBox ID="Educationtxt" runat="server"></asp:TextBox></asp:TableCell><asp:TableCell><asp:Label text ="Occupation" runat="server"></asp:Label></asp:TableCell><asp:TableCell><asp:TextBox ID="Occupationtxt" runat="server"></asp:TextBox></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow7" runat="server" BackColor="#dfe3ee" ForeColor ="Black" >
<asp:TableCell><asp:Label text ="Financial Status" runat="server"></asp:Label></asp:TableCell><asp:TableCell><asp:TextBox ID="FinancialStatustxt" runat="server"></asp:TextBox></asp:TableCell><asp:TableCell><asp:Label text ="BGT" runat="server"></asp:Label></asp:TableCell><asp:TableCell><asp:TextBox ID="BGTtxt" runat="server"></asp:TextBox></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow8" runat="server" BackColor="#dfe3ee" ForeColor ="Black" >
<asp:TableCell><asp:Label text ="Treating Doctor" runat="server"></asp:Label></asp:TableCell><asp:TableCell><asp:TextBox ID="TreatingDoctortxt" runat="server"></asp:TextBox></asp:TableCell><asp:TableCell><asp:Label text ="Ref By:" runat="server"></asp:Label></asp:TableCell><asp:TableCell><asp:RadioButtonList ID="RadioButtonList2" runat ="server" RepeatDirection ="Horizontal">
<asp:ListItem Text ="Self" Value ="Self"></asp:ListItem>
<asp:ListItem Text ="Organisation" Value ="Organisation"></asp:ListItem>
<asp:ListItem Text ="Physician" Value ="Physician"></asp:ListItem>
</asp:RadioButtonList></asp:TableCell></asp:TableRow></asp:Table><br />
</td> </tr>
<tr><td>
<h3 style="color:MidnightBlue; font-style:italic;">ADDITIONAL INFORMATION</h3></td></tr><tr><td>
<asp:Table ID="Table8" runat="server" Font-Size="Large" Width="862px" Font-Names="Palatino"
ForeColor="Snow" CellPadding="5" CellSpacing="0" Align ="left">
<asp:TableRow ID="TableRow16" runat="server" BackColor="#dfe3ee" ForeColor ="Black" >
<asp:TableCell><asp:Label text ="Height(cms)" runat="server"></asp:Label></asp:TableCell><asp:TableCell><asp:TextBox ID="Heighttxt" runat="server"></asp:TextBox></asp:TableCell><asp:TableCell><asp:Label text ="Weight(kgs)" runat="server"></asp:Label></asp:TableCell><asp:TableCell><asp:TextBox ID="Weighttxt" runat="server"></asp:TextBox></asp:TableCell><asp:TableCell><asp:Label text ="Blood Group" runat="server"></asp:Label></asp:TableCell><asp:TableCell><asp:DropDownList ID ="DropDown1" runat ="server">
<asp:ListItem>O+</asp:ListItem>
<asp:ListItem>O-</asp:ListItem>
<asp:ListItem>AB+</asp:ListItem>
<asp:ListItem>AB-</asp:ListItem>
<asp:ListItem>A+</asp:ListItem>
<asp:ListItem>A-</asp:ListItem>
<asp:ListItem>B+</asp:ListItem>
<asp:ListItem>B-</asp:ListItem>
<asp:ListItem>Others</asp:ListItem>
</asp:DropDownList></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow17" runat="server" BackColor="#dfe3ee" ForeColor ="Black" >
<asp:TableCell><asp:Label text ="BSA" runat="server"></asp:Label></asp:TableCell><asp:TableCell><asp:TextBox ID="BSAtxt" runat="server"></asp:TextBox></asp:TableCell><asp:TableCell><asp:Label text ="BMI" runat="server"></asp:Label></asp:TableCell><asp:TableCell><asp:TextBox ID="BMItxt" runat="server"></asp:TextBox></asp:TableCell><asp:TableCell><asp:Label text ="MDRD GFR" runat="server"></asp:Label></asp:TableCell><asp:TableCell><asp:TextBox ID="MDRDGFRtxt" runat="server"></asp:TextBox></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow18" runat="server" BackColor="#dfe3ee" ForeColor ="Black" >
<asp:TableCell><asp:Label text ="HBs Ag" runat="server"></asp:Label></asp:TableCell><asp:TableCell><asp:TextBox ID="HBsAgtxt" runat="server"></asp:TextBox></asp:TableCell><asp:TableCell><asp:Label text ="HCV" runat="server"></asp:Label></asp:TableCell><asp:TableCell><asp:TextBox ID="HCVtxt" runat="server"></asp:TextBox></asp:TableCell><asp:TableCell><asp:Label text ="HIV" runat="server"></asp:Label></asp:TableCell><asp:TableCell><asp:TextBox ID="HIVtxt" runat="server"></asp:TextBox></asp:TableCell></asp:TableRow></asp:Table></td></tr><tr><td>
<h3 style="color:MidnightBlue; font-style:italic;">VACCINATION-BRAND</h3></td></tr><tr><td>
<asp:Table ID ="table5" runat ="server" Font-Size="Large" Width="238px" Font-Names="Palatino" ForeColor ="Snow"
CellPadding="8" CellSpacing="2" Align ="left" Height="62px">
<asp:TableRow>
<asp:TableCell ID="TableCell1" runat="server" BackColor="#dfe3ee" ForeColor ="Black">
<asp:Label Text ="DATE" runat ="server"></asp:Label>
</asp:TableCell><asp:TableCell ID="TableCell2" runat="server" BackColor="#dfe3ee" ForeColor ="Black">
<asp:Label Text ="BRAND" runat ="server"></asp:Label>
</asp:TableCell><asp:TableCell ID="TableCell3" runat="server" BackColor="#dfe3ee" ForeColor ="Black">
<asp:Label Text ="DOSE" runat ="server"></asp:Label>
</asp:TableCell></asp:TableRow><asp:TableRow>
<asp:TableCell ID="TableCell4" runat="server" BackColor="#dfe3ee" ForeColor ="Black">
<asp:TextBox id="datetxt" Runat="server" />
</asp:TableCell><asp:TableCell ID="TableCell5" runat="server" BackColor="#dfe3ee" ForeColor ="Black">
<asp:TextBox id="brandtxt" Runat="server" />
</asp:TableCell><asp:TableCell ID="TableCell6" runat="server" BackColor="#dfe3ee" ForeColor ="Black">
<asp:TextBox id="dosetxt" Runat="server" />
</asp:TableCell></asp:TableRow></asp:Table></td></tr><tr><td>
<asp:Button id="Button1" Text="Update" OnClick="updateClick" Runat="server" Height="30px" Width="100px" />
</td> </tr>
<tr><td>
<asp:GridView id="GridView1" DataSourceID="SqlDataSource1" Runat="server" Font-Size="Large" Width="238px" Font-Names="Palatino" ForeColor ="Snow"
CellPadding="8" CellSpacing="2" Align ="left" Height="62px"> <EmptyDataTemplate>
</p>
<asp:DetailsView id="movi" DataSourceID="SqlDataSource1" AutoGenerateInsertButton="true" AutoGenerateRows="false" Runat="server">
<Fields>
<asp:BoundField HeaderText="Date" DataField="date"/>
<asp:BoundField HeaderText="Brand" DataField="brand" />
<asp:BoundField HeaderText="Dose" DataField="dose" />
</Fields>
</asp:DetailsView>
</EmptyDataTemplate>
<FooterStyle Font-Bold="True" BackColor="#dfe3ee" ForeColor ="Black"/>
<HeaderStyle Font-Bold="True" BackColor="#dfe3ee" ForeColor ="Black"/>
<PagerStyle BackColor="#dfe3ee" ForeColor ="Black" HorizontalAlign="Center" />
<RowStyle BackColor="#dfe3ee" ForeColor ="Black" />
<SelectedRowStyle Font-Bold="True" BackColor="#dfe3ee" ForeColor ="Black"/>
<SortedAscendingCellStyle BackColor="#dfe3ee" />
<SortedAscendingHeaderStyle BackColor="#dfe3ee" />
<SortedDescendingCellStyle BackColor="#dfe3ee" />
<SortedDescendingHeaderStyle BackColor="#dfe3ee" />
</asp:GridView>
<asp:SqlDataSource ID="SqlDataSource1" ConnectionString="<%$ ConnectionStrings:NephroCare %>" SelectCommand="SELECT Date, Brand, Dose FROM part1_gridview2 where id = @id " InsertCommand="INSERT into part1_gridview2 (Id, Date, Brand, Dose) VALUES (@id, @date, @brand, @dose)" Runat="server">
<SelectParameters>
<asp:FormParameter Name="id" FormField="AadharNumbertxt" />
</SelectParameters>
<InsertParameters>
<asp:formparameter name="id" formfield="AadharNumbertxt" />
<asp:formparameter name="date" formfield="datetxt" />
<asp:formparameter name="brand" formfield="brandtxt" />
<asp:formparameter name="dose" formfield="dosetxt" />
</InsertParameters>
</asp:SqlDataSource>
</td> </tr>
<tr><td style="border:1px solid">
<table border="1" align="center">
<tr>
<th>DIAGNOSIS</th><th>YES/NO</th><th>DIAGNOSIS</th><th>YES/NO</th><th>DIAGNOSIS</th><th>YES/NO</th><th>DIAGNOSIS</th><th>YES/NO</th>
</tr>
<tr>
<td>DM/DMN</td><td><asp:CheckBox id ="DMN" runat ="server" Align ="Center"></asp:CheckBox></td>
<td>HTN</td><td><asp:CheckBox id ="HTN" runat ="server" Align ="Center"></asp:CheckBox></td>
<td>CKD Stage</td><td><asp:CheckBox id ="CKDStage" runat ="server" Align ="Center"></asp:CheckBox></td>
<td>CGN</td><td><asp:CheckBox id ="CGN" runat ="server" Align ="Center"></asp:CheckBox></td>
</tr>
<tr>
<td>CIN</td><td><asp:CheckBox id ="CIN" runat ="server" Align ="Center"></asp:CheckBox></td>
<td>ESRD</td><td><asp:CheckBox id ="ESRD" runat ="server" Align ="Center"></asp:CheckBox></td>
<td>Ac.CRF</td><td><asp:CheckBox id ="AcCRF" runat ="server" Align ="Center"></asp:CheckBox></td>
<td>ARF</td><td><asp:CheckBox id ="ARF" runat ="server" Align ="Center"></asp:CheckBox></td>
</tr>
<tr>
<td>RPRF</td><td><asp:CheckBox id ="RPRF" runat ="server" Align ="Center"></asp:CheckBox></td>
<td>AGN</td><td><asp:CheckBox id ="AGN" runat ="server" Align ="Center"></asp:CheckBox></td>
<td>NS</td><td><asp:CheckBox id ="NS" runat ="server" Align ="Center"></asp:CheckBox></td>
<td>SLE</td><td><asp:CheckBox id ="SLE" runat ="server" Align ="Center"></asp:CheckBox></td>
</tr>
<tr>
<td>MCD</td><td><asp:CheckBox id ="MCD" runat ="server" Align ="Center"></asp:CheckBox></td>
<td>MN</td><td><asp:CheckBox id ="MN" runat ="server" Align ="Center"></asp:CheckBox></td>
<td>FSGS</td><td><asp:CheckBox id ="FSGS" runat ="server" Align ="Center"></asp:CheckBox></td>
<td>MPGN</td><td><asp:CheckBox id ="MPGN" runat ="server" Align ="Center"></asp:CheckBox></td>
</tr>
<tr>
<td>Ig A</td><td><asp:CheckBox id ="IgA" runat ="server" Align ="Center"></asp:CheckBox></td>
<td>Cres. GN</td><td><asp:CheckBox id ="CresGN" runat ="server" Align ="Center"></asp:CheckBox></td>
<td>ADPKD</td><td><asp:CheckBox id ="ADPKD" runat ="server" Align ="Center"></asp:CheckBox></td>
<td>MM</td><td><asp:CheckBox id ="MM" runat ="server" Align ="Center"></asp:CheckBox></td>
</tr>
<tr>
<td>AmyId</td><td><asp:CheckBox id ="AmyId" runat ="server" Align ="Center"></asp:CheckBox></td>
<td>RTA</td><td><asp:CheckBox id ="RTA" runat ="server" Align ="Center"></asp:CheckBox></td>
<td>RAS</td><td><asp:CheckBox id ="RAS" runat ="server" Align ="Center"></asp:CheckBox></td>
<td>VUR</td><td><asp:CheckBox id ="VUR" runat ="server" Align ="Center"></asp:CheckBox></td>
</tr>
<tr>
<td>ROD</td><td><asp:CheckBox id ="ROD" runat ="server" Align ="Center"></asp:CheckBox></td>
<td>Ob.Ur.</td><td><asp:CheckBox id ="ObUr" runat ="server" Align ="Center"></asp:CheckBox></td>
<td>Fluorosis</td><td><asp:CheckBox id ="Fluorosis" runat ="server" Align ="Center"></asp:CheckBox></td>
<td>Rickets</td><td><asp:CheckBox id ="Rickets" runat ="server" Align ="Center"></asp:CheckBox></td>
</tr>
<tr>
<td>Cancer</td><td><asp:CheckBox id ="Cancer" runat ="server" Align ="Center"></asp:CheckBox></td>
<td>HKPP</td><td><asp:CheckBox id ="HKPP" runat ="server" Align ="Center"></asp:CheckBox></td>
<td>UTI</td><td><asp:CheckBox id ="UTI" runat ="server" Align ="Center"></asp:CheckBox></td>
<td>BPH</td><td><asp:CheckBox id ="BPH" runat ="server" Align ="Center"></asp:CheckBox></td>
</tr>
<tr>
<td>Malaria</td><td><asp:CheckBox id ="Malaria" runat ="server" Align ="Center"></asp:CheckBox></td>
<td>Post GE</td><td><asp:CheckBox id ="PostGE" runat ="server" Align ="Center"></asp:CheckBox></td>
<td>Snake Bite</td><td><asp:CheckBox id ="SnakeBite" runat ="server" Align ="Center"></asp:CheckBox></td>
<td>Sepsis</td><td><asp:CheckBox id ="Sepsis" runat ="server" Align ="Center"></asp:CheckBox></td>
</tr>
<tr>
<td>Alport</td><td><asp:CheckBox id ="Alport" runat ="server" Align ="Center"></asp:CheckBox></td>
<td>HSP</td><td><asp:CheckBox id ="HSP" runat ="server" Align ="Center"></asp:CheckBox></td>
<td>OTHERS</td><td><asp:CheckBox id ="OTHERS" runat ="server" Align ="Center"></asp:CheckBox></td>
</tr>
</table>
</td></tr>
<tr>
<td>
<div align="center">
<asp:Button runat="server" CssClass="btnbgm" BorderColor="Silver" Font-Size="Large" ForeColor="black" Width="107px" Height="35px" OnClick="Unnamed_Click" id="btn1" Text="Register" BackColor="SeaShell" BorderStyle="Solid" Font-Italic="true" style="margin-left: 44px" /></div></td>
</tr>
</table>
</div>
<br /><br />
</div>
<footer>
<div class="copyright">
<p>© 2013 - Organisation</p>
</div>
<div class="social">
<a href="#" class="support">Contact Us</a>
<a href="#" class="face">f</a>
<a href="#" class="tweet">t</a>
<a href="#" class="linked">in</a>
</div>
</footer>
</form>
</body>
</html>