vote up 0 vote down star

i have only one item in dropdownlist, so the selected index changed event is not fired. can someone help me in this? Thanks

flag
1  
What are you trying to achieve with one item in the list? – TenaciousImpy Nov 9 at 3:33

2 Answers

vote up 1 vote down

Not sure of you situation, but you may want to consider adding a "Select One" option

<asp:ListItem value="" text="Select One"/>
<asp:ListItem value="123" text="Item124"/>

Then add some back-end logic to make sure selected index is >0 to make sure your item is selected.

link|flag
vote up 1 vote down

not sure what you are trying to accomplish, but if you want to only have the one option in the select list, but still want the selected index changed even to be triggered, a cheat could be to add a generic default value like "Select One" or something?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.