Back to blog

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 min read
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");
   
}
  

Related Articles