Ejemplo n.º 1
0
 private void BindDeviceType()
 {
     DropDownListDeviceType.ClearSelection();
     DropDownListDeviceType.DataSource     = DeviceType.GetDeviceTypeList();
     DropDownListDeviceType.DataTextField  = "Description";
     DropDownListDeviceType.DataValueField = "DeviceTypeId";
     DropDownListDeviceType.DataBind();
     DropDownListDeviceType.Items.Insert(0, new ListItem("Please select", "0"));
 }