-
Notifications
You must be signed in to change notification settings - Fork 0
/
revir.aspx
159 lines (156 loc) · 4.98 KB
/
revir.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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<%@ Page Title="" Language="C#" MasterPageFile="~/MASTER.master" AutoEventWireup="true" CodeFile="revir.aspx.cs" Inherits="ÖĞRENCİ" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
<style type="text/css">
.style1
{
width: 100%;
}
.style2
{
}
.style3
{
width: 232px;
}
</style>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<div id="metin">
<div class="menudiv">
<ul>
<li><a href="haber.aspx">HABERLER</a></li>
<li><a href="kutuphane.aspx">KÜTÜPHANE</a></li>
<li><a href="ogrenci.aspx">ÖĞRENCİ</a></li>
<li><a href="revir.aspx">REVİR</a></li>
</ul>
</div>
<table class="style1" style="border-style: groove; border-color: #000000">
<tr>
<td class="style3">
Öğrenci No :</td>
<td>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td class="style3">
Ad Soyad :</td>
<td>
<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td class="style3">
Cinsiyet :</td>
<td>
<asp:DropDownList ID="DropDownList1" runat="server">
<asp:ListItem></asp:ListItem>
<asp:ListItem>KIZ</asp:ListItem>
<asp:ListItem>ERKEK</asp:ListItem>
</asp:DropDownList>
</td>
</tr>
<tr>
<td class="style3">
T.C. No :</td>
<td>
<asp:TextBox ID="TextBox3" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td class="style3">
Doğum Tarih :</td>
<td>
<asp:TextBox ID="TextBox4" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td class="style3">
Veli Adı :</td>
<td>
<asp:TextBox ID="TextBox5" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td class="style3">
Dönem :</td>
<td>
<asp:TextBox ID="TextBox6" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td class="style3">
Kan Grubu :</td>
<td>
<asp:DropDownList ID="DropDownList2" runat="server">
<asp:ListItem></asp:ListItem>
<asp:ListItem>Rh+ AB</asp:ListItem>
<asp:ListItem>Rh+ A</asp:ListItem>
<asp:ListItem>Rh+ B</asp:ListItem>
<asp:ListItem>Rh- AB</asp:ListItem>
<asp:ListItem>Rh- A</asp:ListItem>
<asp:ListItem>Rh- B</asp:ListItem>
<asp:ListItem>Rh+ 0</asp:ListItem>
<asp:ListItem>Rh- 0</asp:ListItem>
</asp:DropDownList>
</td>
</tr>
<tr>
<td class="style3">
Telefon :</td>
<td>
<asp:TextBox ID="TextBox7" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td class="style3">
Şube :</td>
<td>
<asp:DropDownList ID="DropDownList3" runat="server">
<asp:ListItem></asp:ListItem>
<asp:ListItem>A</asp:ListItem>
<asp:ListItem>B</asp:ListItem>
<asp:ListItem>C</asp:ListItem>
</asp:DropDownList>
</td>
</tr>
<tr>
<td class="style3">
Adres :</td>
<td>
<asp:TextBox ID="TextBox8" runat="server" TextMode="MultiLine"></asp:TextBox>
</td>
</tr>
<tr>
<td class="style3">
Öğrentmen :</td>
<td>
<asp:TextBox ID="TextBox9" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td class="style3">
<asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="EKLE" />
<asp:Button ID="Button4" runat="server" onclick="Button4_Click"
Text="LİSTELE" />
</td>
<td>
<asp:Button ID="Button3" runat="server" Text="SİL" onclick="Button3_Click" />
<asp:Label ID="Label2" runat="server" Text="Öğrenci No :"></asp:Label>
<asp:TextBox ID="TextBox10" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td class="style2" colspan="2">
<asp:Label ID="Label1" runat="server"></asp:Label>
<br />
<asp:ListBox ID="ListBox1" runat="server" Width="682px"></asp:ListBox>
</td>
</tr>
</table>
</div>
</asp:Content>