-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathresult.aspx
90 lines (88 loc) · 3.3 KB
/
result.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
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="result.aspx.cs" Inherits="Default6" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table style="width: 100%">
<tr>
<td align="left" style="width: 436px">
PLEASE ENTER YOUR ROLL NO TO CHECK THE RESULT</td>
<td>
</td>
</tr>
<tr>
<td style="width: 436px">
</td>
<td>
</td>
</tr>
<tr>
<td align="center" style="width: 436px; height: 22px">
ENTER ROLL NO</td>
<td align="left" style="height: 22px">
<asp:TextBox ID="TextBox3" runat="server" Width="220px"></asp:TextBox>
</td>
</tr>
<tr>
<td align="center" style="width: 436px">
ENTER SEMESTER</td>
<td align="left">
<asp:TextBox ID="TextBox2" runat="server" Width="220px"></asp:TextBox>
</td>
</tr>
<tr>
<td align="center" style="width: 436px">
</td>
<td>
</td>
</tr>
<tr>
<td align="center" style="width: 436px">
<asp:Button ID="Button1" runat="server" Text="SUBMIT" onclick="Button1_Click" />
</td>
<td align="left">
<asp:Button ID="Button2" runat="server" Text="CANCEL" />
</td>
</tr>
</table>
<table style="width: 100%">
<tr>
<td align="center">
<asp:Label ID="Label1" runat="server" Text="RESULT"></asp:Label>
</td>
</tr>
<tr>
<td align="center">
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False"
Width="192px" ForeColor="White">
<columns>
<asp:BoundField HeaderText="SR.NO" DataField="srno"/>
<asp:BoundField HeaderText="SUBID" DataField="subid"/>
<asp:BoundField HeaderText="ROLL NO" DataField="enrolmentno"/>
<asp:BoundField HeaderText="MARKS THEORY" DataField="markstheory"/>
<asp:BoundField HeaderText="MARKS PRACTICAL" DataField="markspractical" />
<asp:BoundField HeaderText="DATE OF RESULT" DataField="res_date" />
</columns>
</asp:GridView>
</td>
</tr>
</table>
<table style="width: 100%">
<tr>
<td style="width: 332px; height: 22px">
</td>
<td style="height: 22px">
</td>
</tr>
</table>
<p align="center">
<asp:Button ID="Button3" runat="server" onclick="Button3_Click"
Text="CHECK RESULT BRANCH WISE" />
</p>
<table style="width: 100%">
<tr>
<td style="height: 22px; width: 699px">
</td>
<td style="height: 22px">
</td>
</tr>
</table>
</asp:Content>