0% found this document useful (0 votes)
3 views1 page

HTML Sayfa1

The document is an ASP.NET Web Forms page that includes a form with a dropdown list for continents, a button to retrieve countries, and a GridView to display the countries. It utilizes server-side controls like Label, DropDownList, LinkButton, and Button. The page is designed to handle events such as dropdown selection changes and button clicks.

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)
3 views1 page

HTML Sayfa1

The document is an ASP.NET Web Forms page that includes a form with a dropdown list for continents, a button to retrieve countries, and a GridView to display the countries. It utilizes server-side controls like Label, DropDownList, LinkButton, and Button. The page is designed to handle events such as dropdown selection changes and button clicks.

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/ 1

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

cs"
Inherits="Sayfa1BK" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style type="text/css">
.auto-style1 {
height: 30px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<table style="width:100%;">
<tr>
<td>
<asp:Label ID="lblKitalar" runat="server"></asp:Label>
</td>
<td>
<asp:DropDownList ID="ddListKitalar" runat="server"
AutoPostBack="True" OnSelectedIndexChanged="ddListKitalar_SelectedIndexChanged"
style="height: 22px" Width="99px">
</asp:DropDownList>
</td>
<td>
<asp:LinkButton ID="lBtnGirisFormu" runat="server"
OnClick="lBtnGirisFormu_Click"></asp:LinkButton>
</td>
</tr>
<tr>
<td class="auto-style1">
<asp:Button ID="butUlkeGetir" runat="server"
OnClick="butUlkeGetir_Click" />
</td>
<td class="auto-style1">
<asp:GridView ID="gViewUlkeler" runat="server">
</asp:GridView>
</td>
<td class="auto-style1"></td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</table>
</div>
</form>
</body>
</html>

You might also like