Click here to Skip to main content
15,892,072 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi
I want to set my combo box default selected value as "Select" text ,is there are any property ??
Plzz help.
Thanx in advance
Posted
Comments
[no name] 13-Feb-13 2:19am    
Try This :

on page load event ;

if(!ispostback)
{
FillDropDownList();
}

-----------

<pre>

private void FillDropDownList()
{
DataSet ds = new DataSet();
SqlDataAdapter myda = new SqlDataAdapter("Select field FROM tablename", conn object);
myda.Fill(ds);
dropdown_name.DataSource = ds;
dropdown_name.DataValueField = "field";
dropdown_name.DataBind();
dropdown_name.Items.Insert(0, new ListItem("Select", "0"));
}

</pre>

It will sure help to you.
if any problem please post it.

Mitesh

ListItem newItem = new ListItem();
newItem.Text = "Select";
newItem.Value = "0";
DropDownName.Items.Add(newItem);
 
Share this answer
 
You have to set the 1st option as being "Select" eg:
HTML
<select id="myDropDown">
<option>Select a fruit....</option>
<option>Apple</option>
<option>Banana</option>
<option>Pear</option>
</select>
 
Share this answer
 
Try this in your page load but only when Ispostback is false:

C#
dropdown1.Items.Insert(0, new ListItem("--Select--", "0"));
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900