-
Notifications
You must be signed in to change notification settings - Fork 1
/
Degreeissuance.aspx
86 lines (82 loc) · 4.49 KB
/
Degreeissuance.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
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Degreeissuance.aspx.cs" Inherits="Degreeissuance" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="deg" runat="server" style="; padding: inherit; text-align: center; background-color: #41B3A3;">
<div>
</div>
<br />
<br />
<div style="margin-left: 180px; margin-right: 100px; text-align:center">
<asp:Panel ID="Panel1" runat="server" BackColor="#E27360" Font-Bold="True" Font-Italic="False" Font-Size="XX-Large" HorizontalAlign="Center" ForeColor="White" Width="1000" >
<br />
Degree Issuance Form<br />
<br />
</asp:Panel >
</div>
<br />
<br />
<p style="font-family: 'Baskerville Old Face'; text-align: justify; margin-left: 1px;">
</p>
<p style="font-family: 'Baskerville Old Face'; text-align: center; margin-left: 0px; color:white">
First Name:
<asp:TextBox ID="fnamee" runat="server" OnTextChanged="fname_TextChanged"></asp:TextBox>
<br />
<br />
Last Name:
<asp:TextBox ID="lnamee" runat="server" OnTextChanged="lname_TextChanged"></asp:TextBox>
</p>
<p style="font-family: 'Baskerville Old Face'; text-align: center; margin-left: 0px;color:white">
Roll no
<asp:TextBox ID="roll" runat="server" OnTextChanged="rollno_TextChanged"></asp:TextBox>
</p>
<p style="font-family: 'Baskerville Old Face'; text-align: center; margin-left: 0px;color:white">
CNIC no.
<asp:TextBox ID="cnicc" runat="server" OnTextChanged="cnic_TextChanged"></asp:TextBox>
</p>
<p style="font-family: 'Baskerville Old Face'; text-align: center; margin-left: 0px;color:white">
Permanent Address
<asp:TextBox ID="address" runat="server" OnTextChanged="address_TextChanged"></asp:TextBox>
</p>
<p style="font-family: 'Baskerville Old Face'; text-align: center; margin-left: 0px;color:white">
Post_grad/Under_grad <asp:DropDownList ID="DropDownList1" runat="server" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged">
<asp:ListItem>Post_grad</asp:ListItem>
<asp:ListItem>Undergrad</asp:ListItem>
</asp:DropDownList>
</p>
<p style="font-family: 'Baskerville Old Face'; text-align: center; margin-left: 0px;color:white">
Major <asp:TextBox ID="majorr" runat="server" OnTextChanged="major_TextChanged"></asp:TextBox>
</p>
<p style="font-family: 'Baskerville Old Face'; text-align: center; margin-left: 0px;color:white">
CGPA
<asp:TextBox ID="gpa" runat="server" OnTextChanged="cgpa_TextChanged"></asp:TextBox>
</p>
<p style="font-family: 'Baskerville Old Face'; text-align: center; margin-left: 0px;color:white">
</p>
<p style="font-family: 'Baskerville Old Face'; text-align: justify; margin-left: 320px;color:white">
</p>
<p style="font-family: 'Baskerville Old Face'; text-align: center; margin-left: 0px;">
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" TabIndex="1" Text="Submit" />
</p>
<p style="font-family: 'Baskerville Old Face'; text-align: justify; margin-left: 320px;">
</p>
<p style="font-family: 'Baskerville Old Face'; text-align: justify; margin-left: 320px;">
</p>
<p style="font-family: 'Baskerville Old Face'; text-align: justify; margin-left: 320px;">
</p>
<p style="font-family: 'Baskerville Old Face'; text-align: justify; margin-left: 320px;">
</p>
</form>
</body>
</html>