in mvc i am binding a drop down like this
@Html.DropDownList("wantedTime", new List<SelectListItem>
{
new SelectListItem{ Text="select time", Value = "#" },
new SelectListItem{ Text="12:00 AM", Value = "00:00"},
new SelectListItem{ Text="12:30 AM", Value = "00:30" },
new SelectListItem{ Text="01:00 AM", Value = "01:00" })
It is good for the first time to load but next time when the view reloads because of some reason i want to fix the selected value for the drop down that i hold in session.
So how can i fox the selected value for the ddl in MVC for the above scenario.