I am using following code to generate a list box..
<%: Html.ListBoxFor(m => m.Subscribers, new List<SelectListItem>(), new { @class = "list_style_Wizard" })%>
But we can select more than one items from the listbox.. How can i restric it to single select ???
Html.ListBoxForis used to render a multiple choice list box. For single choice useHtml.DropDownListFor