How do I set the initial value of a databound drop down list in ASP.NET?
For instance, I want the values, but the first value to display should be -- Select One ---, with a null value.
|
1
|
How do I set the initial value of a databound drop down list in ASP.NET? For instance, I want the values, but the first value to display should be -- Select One ---, with a null value.
|
|||
|
|
|
|
I think what you want to do is this:
Make sure the 'AppendDataBoundItems' is set to true or else you will clear the '--Select One--' list item when you bind your data. If you have the 'AutoPostBack' property of the drop down list set to true you will have to also set the 'CausesValidation' property to true then use a 'RequiredFieldValidator' to make sure the '--Select One--' option doesn't cause a postback.
|
||
|
|
|
I know this already has a chosen answer - but I wanted to toss in my two cents. I have a databound dropdown list:
In the codebehind, I have this - (which selects United States by default):
The page initially loads based on the 'US' value rather than trying to worry about a selectedIndex (what if another item is added into the data table - I don't want to have to re-code) |
||
|
|
|
|
What I do is set the text property of the drop down list AFTER I databind it. Something like this:
This makes the initial visible value of this dropdown show up, but not actually be a part of the drop down, nor is it a selectable. |
||
|
|
|
|
if you know the index of your initial value, then just use
for example, to pre-select the first item in the list. |
||
|
|
|
|
Add an item and set its "Selected" property to true, you will probably want to set "appenddatabounditems" property to true also so your initial value isn't deleted when databound. If you are talking about setting an initial value that is in your databound items then hook into your ondatabound event and set which index you want to selected=true you will want to wrap it in "if not page.isPostBack then ...." though
|
||
|
|