In asp.net mvc3 how to keep dropdown list selected item after postback.
Use HttpRequestBase object. In the view, this should work:
@Html.DropDownList("mydropdown", ViewBag.Itens as IEnumerable, new { value = Request["mydropdown"] })