-
Notifications
You must be signed in to change notification settings - Fork 0
/
internshipstudent.aspx
142 lines (134 loc) · 5.81 KB
/
internshipstudent.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
<%@ Page Title="" Language="C#" MasterPageFile="~/studentpanel.Master" AutoEventWireup="true" CodeBehind="internshipstudent.aspx.cs" Inherits="Internship.internshipstudent" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
<style type="text/css">
.auto-style2 {
width: 100%;
}
.auto-style6 {
margin-left: 39px;
}
.auto-style9 {
width: 917px;
}
.auto-style10 {
margin-left: 34px;
}
.auto-style11 {
margin-left: 62px;
}
.auto-style12 {
margin-left: 54px;
}
.auto-style13 {
margin-left: 42px;
}
.auto-style14 {
margin-left: 32px;
}
.auto-style15 {
margin-left: 27px;
}
.auto-style16 {
margin-left: 57px;
}
.auto-style17 {
width: 84%;
height: 240px;
margin-bottom: 0px;
}
.auto-style18 {
width: 684px;
}
</style>
</asp:Content>
<asp:Content ID="Content2" runat="server" contentplaceholderid="ContentPlaceHolder1">
<div style="border-style: solid; border-width: medium">
<br />
<table class="auto-style2">
<tr>
<td> </td>
<td> </td>
<td class="auto-style9"> </td>
<td>Welcome :
<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
<br />
</td>
</tr>
</table>
<div >
<table class="auto-style17" style="background-color: #FEFDC0; border: 5px solid #ddd; margin: auto; padding: 20px 20px 10%; box-sizing: border-box; text-align: center; font-size: 17px;" class="auto-style5">
<tr>
<td class="auto-style18">
<br />
Student ID :
<asp:TextBox ID="txtid" runat="server" CssClass="auto-style10" Width="184px"></asp:TextBox>
<br />
<br />
Name :
<asp:TextBox ID="txtname" runat="server" CssClass="auto-style11"></asp:TextBox>
<br />
<br />
Branch :
<asp:TextBox ID="txtbranch" runat="server" CssClass="auto-style12"></asp:TextBox>
<br />
<br />
Section :
<asp:TextBox ID="txtsection" runat="server" CssClass="auto-style13"></asp:TextBox>
<br />
<br />
Company :
<asp:TextBox ID="txtcompany" runat="server" CssClass="auto-style14"></asp:TextBox>
<br />
<br />
City :
<asp:TextBox ID="txtcity" runat="server" CssClass="auto-style15"></asp:TextBox>
<br />
<br />
Internship Type :<asp:DropDownList ID="DropDownList1" runat="server" CssClass="auto-style16">
<asp:ListItem>2 week</asp:ListItem>
<asp:ListItem>3 - month</asp:ListItem>
<asp:ListItem>6 - Month</asp:ListItem>
</asp:DropDownList>
<br />
<br />
Status :
<asp:Label ID="llstatus" runat="server" Text="Label"></asp:Label>
<br />
<br />
<br />
<asp:Button ID="btnsubmit" runat="server" CssClass="auto-style6" Text="Submit" Width="120px" OnClick="Button1_Click" />
<br />
<br />
</td>
</tr>
</table>
</div>
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
</div>
</asp:Content>