-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathResultsAdmin.aspx
52 lines (49 loc) · 1.59 KB
/
ResultsAdmin.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
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="ResultsAdmin.aspx.vb" Inherits="online_project_final.ResultsAdmin" %>
<!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>
<style type="text/css">
.style1
{
color: #FF6600;
font-weight: bold;
font-family: "Times New Roman", Times, serif;
font-size: large;
}
.style2
{
color: #3333FF;
}
.style3
{
color: #3333FF;
margin-left: 120px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
Hello <span class="style1">Admin</span></div>
<p class="style2">
The Exam statistics are:</p>
<p class="style3">
No. of Students who attempted the exam:<asp:Label ID="lbl_attempted"
runat="server" style="color: #FF0000"></asp:Label>
</p>
<p class="style3">
Students under POOR category are:<asp:Label ID="lbl_poor" runat="server"
style="color: #FF0000"></asp:Label>
</p>
<p class="style3">
Students under AVERAGE category are:<asp:Label ID="lbl_average" runat="server"
style="color: #FF0000"></asp:Label>
</p>
<p class="style3">
Students under EXCELLENT category are:<asp:Label ID="lbl_excellent"
runat="server" style="color: #FF0000"></asp:Label>
</p>
</form>
</body>
</html>