Blog'a dön

ASP.NET

DropDownList in itemlarına kod tarafında erişmek

DropDownList in itemlarına kod tarafında erişmek, DropDownList, in, itemlarına, kod, tarafında, erişmek blog, mustafayılmaz.com kişisel web sitesi yazılım uzmanından notlar

Mustafa Yılmaz1 dk okuma
DropDownList in itemlarına kod tarafında erişmek

protected void selectAssignee_OnSelectedIndexChanged(object sender, EventArgs e)
   
{
       
DropDownList dropDownList = (DropDownList)sender;
       
ListViewItem listView = (ListViewItem)dropDownList.NamingContainer;

       
var test = listView.DataItem;
       
string test2 = listView.FindControl("customerId").ToString();

       
int rowIndex = (int)listView.DataItemIndex;
       
Label lblMessage = (Label)listView.FindControl("customerId");
   
}
  

İlgili Yazılar