Senaryoda bir DataList'imiz olsun. O DataList'in içinde de DropDownList'imiz olsun. DropDownList'in SelectedValue'sunu yakalamak için aşağıdaki kodu yamamız yeterli olur.protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e){DropDownList ddl = sender as DropDownList;
string deger = ddl.Items[ddl.SelectedIndex].Value;
}
1 yorum:
Ya kodlar yanlış datalist içindeki dropdownlist'in selectedindexchanged eventi dediğiniz şekilde yakalanmıyoki :/
Yorum Gönder