I have 2 dropdown lists that I'm putting on to the page as follows. I can't get either to work:
<%=Html.DropDownList("CategoryId", Model.CategoryList, "Select a category to view")%>
and
<%=Html.DropDownList() For(m => m.SearchExpression) %>
What I need is to be able to redirect to a page when one of the items is selected and I click submit.
Can somebody please outline the steps I need to take to achieve this?