<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="StudentInsertPage.aspx.cs" Inherits="WebProject.StudentInsertPage" %> <!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>Okul Uygulaması</title> <style type="text/css"> .style1 { height: 34px; } .style2 { height: 35px; } .style3 { height: 36px; } </style> </head> <body> <form id="form1" runat="server"> <h1>Öğrenci Ekleme</h1> <div style="height: 466px"> <table style="width:100%;"> <tr> <td class="style3" colspan="2" rowspan="1"> <asp:Label ID="MessageLabel" runat="server" ForeColor="#990000" style="margin-bottom: 0px" Width="553px"></asp:Label> </td> <td class="style3"> </td> </tr> <tr> <td class="style1"> Öğrenci Adı</td> <td> <asp:TextBox ID="FirstNameTextBox" runat="server"></asp:TextBox> </td> </tr> <tr> <td class="style1"> Öğrenci Soyadı</td> <td> <asp:TextBox ID="LastNameTextBox" runat="server"></asp:TextBox> </td> </tr> <tr> <td class="style1"> Doğum Tarihi</td> <td> <asp:Calendar ID="BirhDateCalendar" runat="server"></asp:Calendar> </td> </tr> <tr> <td class="style1"> Mezun Mu</td> <td> <asp:CheckBox ID="IsGraduatedCheckBox" runat="server" /> </td> </tr> <tr> <td class="style1"> Vücut Ağırlığı</td> <td> <asp:TextBox ID="BodyWeightTextBox" runat="server"></asp:TextBox> </td> </tr> <tr> <td class="style1"> Okul No</td> <td> <asp:DropDownList ID="SchoolIdDropDownList" runat="server"> </asp:DropDownList> </td> </tr> <tr> <td class="style2" id="S"> <asp:Button ID="OkButton" runat="server" onclick="OkButton_Click" Text="Tamam" /> </td> <td class="style3"> <asp:Button ID="CancelButton" runat="server" Text="İptal" Width="121px" onclick="CancelButton_Click" /> </td> </tr> </table> </div> </form> </body> </html>Dosyayı İndir