I have loaded combo as following.
cmdString = "select propertytypeid,typename from propertytype ";
da = new SqlDataAdapter(cmdString, conString);
dt_PropertyType = new DataTable();
da.Fill(dt_PropertyType);
cmb_PropertyType.DisplayMember = "Name";
cmb_PropertyType.ValueMember = "ID";
arr = new ArrayList();
for (int i = 0; i < dt_PropertyType.Rows.Count; i++)
{
arr.Add(new KeyValueData(dt_PropertyType.Rows[i][1].ToString(),int.Parse(dt_PropertyType.Rows[i][0].ToString())));
}
cmb_PropertyType.DataSource = arr;
but How Can I get the hidden id as I change selected item of the combo?