-
Notifications
You must be signed in to change notification settings - Fork 0
/
studentpanel.Master
92 lines (88 loc) · 6.95 KB
/
studentpanel.Master
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
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="studentpanel.master.cs" Inherits="Internship.studentpanel" %>
<!DOCTYPE html>
<html>
<head runat="server">
<title></title>
<asp:ContentPlaceHolder ID="head" runat="server">
</asp:ContentPlaceHolder>
<style type="text/css">
.auto-style1 {
width: 142px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<table style="width:100%;">
<tr>
<td colspan="2" style="text-align: center; font-size: 24px; color: #FF0000; background-color: #C0C0C0;"> Departmental Internship Portal
</td>
</tr>
<tr>
<td class="auto-style1" style="background-color: #C0C0C0">
<asp:LinkButton ID="LinkButton1" runat="server" ForeColor="Black">Dashbord</asp:LinkButton>
</td>
<td rowspan="13">
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
<p>
</p>
</asp:ContentPlaceHolder>
</td>
</tr>
<tr>
<td class="auto-style1" style="background-color: #C0C0C0">
<asp:LinkButton ID="LinkButton2" runat="server" PostBackUrl="~/internshipstudent.aspx" ForeColor="Black">Internship Form</asp:LinkButton>
</td>
</tr>
<tr>
<td class="auto-style1" style="background-color: #C0C0C0">
<asp:LinkButton ID="LinkButton3" runat="server" PostBackUrl="~/history.aspx" OnClick="LinkButton3_Click" ForeColor="Black">View History </asp:LinkButton>
</td>
</tr>
<tr>
<td class="auto-style1" style="background-color: #C0C0C0">
<asp:LinkButton ID="LinkButton4" runat="server" PostBackUrl="~/certificate.aspx" ForeColor="Black">Upload Certificate</asp:LinkButton>
</td>
</tr>
<tr>
<td class="auto-style1" style="background-color: #C0C0C0">
<asp:LinkButton ID="LinkButton5" runat="server" ForeColor="Black">Change Password</asp:LinkButton>
</td>
</tr>
<tr>
<td class="auto-style1" style="background-color: #C0C0C0">
<asp:LinkButton ID="LinkButton6" runat="server" PostBackUrl="~/default.aspx" ForeColor="Black">Logout</asp:LinkButton>
</td>
</tr>
<tr>
<td class="auto-style1" style="background-color: #C0C0C0"> </td>
</tr>
<tr>
<td class="auto-style1" style="background-color: #C0C0C0"> </td>
</tr>
<tr>
<td class="auto-style1" style="background-color: #C0C0C0"> </td>
</tr>
<tr>
<td class="auto-style1" style="background-color: #C0C0C0"> </td>
</tr>
<tr>
<td class="auto-style1" style="background-color: #C0C0C0"> </td>
</tr>
<tr>
<td class="auto-style1" style="background-color: #C0C0C0"> </td>
</tr>
<tr>
<td class="auto-style1" style="background-color: #C0C0C0"> </td>
</tr>
<tr>
<td class="auto-style1" style="background-color: #C0C0C0"> </td>
<td style="background-color: #C0C0C0"> </td>
</tr>
</table>
</div>
</form>
</body>
</html>