vote up 2 vote down star
2

Hi Everyone,

is there way thats i can preselect an item when the page loads or posts to the server..

this is what i have right now..

<%=Html.DropDownList("dllMonths", 
    new SelectList(new List<string>() {
       "", "January", "Feburary", "March", "April", "June", 
       "July", "August", "September", "October", "November", 
       "December"}), 
    new { onchange="this.form.submit();" })%>

Thanx in advance..

Owais

flag

63% accept rate

1 Answer

vote up 9 vote down check

Set the SelectedValue property of the SelectList, or pass it as second parameter to SelectList constructor.

<% = Html.DropDownList ( "dllMonths", new SelectList ( new List ( ) { "", "January", "Feburary", "March", "April", "June", "July", "August", "September", "October", "November", "December" }, "April" ), new { onchange = "this.form.submit();" } )%>

link|flag
I would go a little further and say that you should use an overload with the selected item argument. – Craig Stuntz Jan 16 at 15:25
i think that was what i said :) – baretta Jan 16 at 15:36
He gave two choices; I'm saying the first is really the only acceptable one. But I did up-vote since he got it right. – Craig Stuntz Jan 16 at 17:19
Er, I meant the second. :) – Craig Stuntz Jan 16 at 17:19
yea, actually i would agree on that. It will probably save a function call as well i would think – baretta Jan 16 at 17:21
show 1 more comment

Your Answer

Get an OpenID
or

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