DropDownList Nesnesinde Seçilen Değerin Gösterimi

Merhaba arkadaşlar. Bu makalemizde  DropDownList nesnesindeki FindByText metodunu kullanarak   FindByText te yazılı text in DropdDownList te seçili olmasını sağlıyoruz.

Screenshoot




Şekil 1
Default.aspx.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        //FindByText te yazılı text in dropdownlistte seçili olmasını sağlıyoruz.
        DropDownList1.Items.FindByText("Bahadır Şahin").Selected = true;
    }
}

Default.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
   
        <asp:DropDownList ID="DropDownList1" runat="server" Font-Bold="True" Font-Italic="False" Font-Size="Large" Height="38px" Width="200px">
            <asp:ListItem>Melisa Torun</asp:ListItem>
            <asp:ListItem>Aylin Şen</asp:ListItem>
            <asp:ListItem>Büşra Tekin</asp:ListItem>
            <asp:ListItem>Bahadır Şahin</asp:ListItem>
            <asp:ListItem>Fatih Koç</asp:ListItem>
            <asp:ListItem>Selin Akın</asp:ListItem>
            <asp:ListItem>Feride Doğan</asp:ListItem>
        </asp:DropDownList>
   
    </div>
    </form>
</body>
</html>

Bir makalenin daha sonuna geldik. Bir sonraki makalede görüşmek üzere. Bahadır ŞAHİN

About Bahadır Şahin

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.

0 comments:

Öne Çıkan Yayın

GridView da Seçili Satırı DetailsView da Göstermek

Merhaba arkadaşlar bu makalemizde GridView nesnesi ile birlikte DetailsView nesanesini birlikte kullanacağız. GridView da seçili satırın de...