Posted 18 Oct 2010 Link to this post
if
(!IsPostBack)
{
RadComboBox1.Items.Insert(0,
new
RadComboBoxItem(
"Select Your Name"
,
"0"
));
RadComboBox1.SelectedIndex = 0;
}
protected
void
Page_Load(
object
sender, EventArgs e)
RadComboBox1.EmptyMessage =
"Please select a country"
;