0% found this document useful (0 votes)
2 views2 pages

HTML Sayfa3

The document is an ASP.NET web form written in C# that includes a user interface for listing countries by continent. It features various controls such as labels, text boxes, buttons, and a grid view for displaying countries. The form allows users to add and modify country information, with a designated area for displaying results.

Uploaded by

m0nst3rs737
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views2 pages

HTML Sayfa3

The document is an ASP.NET web form written in C# that includes a user interface for listing countries by continent. It features various controls such as labels, text boxes, buttons, and a grid view for displaying countries. The form allows users to add and modify country information, with a designated area for displaying results.

Uploaded by

m0nst3rs737
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Sayfa3BK.aspx.

cs"
Inherits="Sayfa3BK" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style type="text/css">
.auto-style1 {
height: 23px;
}
.newStyle1 {
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
"Lucida Sans", Arial, sans-serif;
font-size: medium;
color: #CC0000;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<table style="width:100%;">
<tr>
<td class="auto-style1">
<asp:Label ID="lblKullanici" runat="server"></asp:Label>
</td>
<td class="auto-style1"></td>
<td class="auto-style1">
<asp:Button ID="butUlkeleriListele" runat="server"
OnClick="butUlkeleriListele_Click" />
</td>
</tr>
<tr>
<td>
<asp:Label ID="lblKita" runat="server"></asp:Label>
</td>
<td>
<asp:ListBox ID="lboxKitalar" runat="server"
AutoPostBack="True"></asp:ListBox>
</td>
<td>
<asp:GridView ID="gViewUlkeler" runat="server">
<Columns>
<asp:CommandField SelectText="Seç"
ShowSelectButton="True" />
</Columns>
</asp:GridView>
</td>
</tr>
<tr>
<td>
<asp:Label ID="lblUlke" runat="server"></asp:Label>
</td>
<td>
<asp:TextBox ID="txtUlke" runat="server"></asp:TextBox>
</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>
<asp:Label ID="lblNufus" runat="server"></asp:Label>
</td>
<td>
<asp:TextBox ID="txtNufus" runat="server"></asp:TextBox>
</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>
<asp:Button ID="butEkle" runat="server"
OnClick="butEkle_Click" />
</td>
<td>
<asp:Button ID="butDuzelt" runat="server" />
</td>
<td>
<asp:Label ID="lblSonuc" runat="server"
CssClass="newStyle1"></asp:Label>
</td>
</tr>
</table>
</div>
</form>
</body>
</html>

You might also like