vote up 1 vote down star

Hi, i have form with one textbox and dropdownlist

<%=Html.TextBox("Name")%>
<%=Html.ValidationMessage("Name", "Enter name")%>

<%=Html.DropDownList("Not Selected", "DomainID", ViewData["DomainID"])%>


I select value from drop downlist but dont fill name, im getting validation for textbox and then i need select value from dropdown again, of course with textbox it works but what can i do with list??

flag

59% accept rate

1 Answer

vote up 2 vote down

I assume that ViewData["DomainID"] is a SelectList? The constructor for SelectList takes a selectedValue object. Use that to pass the selected value in to your select list in the post action.

link|flag
Did but still dont want select: ViewData["DomainID"] = new SelectList(commonService.GetDomains(), "ID", "Name", (item.Domain == null ? 0 : item.Domain.ID)); – msony Nov 4 '08 at 17:14
Maybe item.Domain is null? – Tim Scott Nov 5 '08 at 2:54

Your Answer

Get an OpenID
or

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