how to get user control dropdown value in asp net

49

how to get user control dropdown value in asp net -

public string YourValue
{
  get
  {
    return ddlVendorList.SelectedItem.Text;
  }

}

Comments

Submit
0 Comments