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??
