vote up 0 vote down star

This construction below using dropdownlist does not work!!

<% = Html.DropDownList (ddlUf, "All", New With (. Class = "text"})%>

It only works if I do this:

<% = Html.DropDownList (ddlUf, "All")%>

Or this:

<% = Html.DropDownList (ddlUf, Nothing, New With (. Class = "text"})%>

How do I solve this problem?

Thanks

flag

25% accept rate

2 Answers

vote up 1 vote down

use new{ @class = "text"})

link|flag
Looks like he's using VB.NET to me. – Kezzer Oct 29 at 14:16
vote up 0 vote down

I think you have the order of parameters mixed up. Assuming that ddlUf is a string with the DropDownList name, and "All" is supposed to be the default option, then you need something like this:

<% =Html.DropDownList(ddlUf, Model.FullListOfSelectListItems, "All", New With (. Class = "text") %>
link|flag

Your Answer

Get an OpenID
or

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