I need to populate a dropdown in ASP.NET MVC 3. I was hoping to get the answers to the following questions:
- What options do I have. I mean what's the difference between @Html.DropDownList and @Html.DropDownListFor. Also are there any other options?
I have the following classes/code. What would be the razor code/HTML syntax I need (I have included what I was trying) in my .cshtml assuming I need to only show this dropdown using the classes below.
public class SearchCriterion { public int Id { get; set; } public string Text { get; set; } public string Value { get; set; } } public class SearchCriteriaViewModel { public IEnumerable<SelectListItem> SearchCriteria { get; set; } } public class HomeController : Controller { public ActionResult Index() { IList<System.Web.WebPages.Html.SelectListItem> searchCriteriaSelectList = new List<System.Web.WebPages.Html.SelectListItem>(); SearchCriteriaViewModel model = new SearchCriteriaViewModel(); //Some code to populate searchCriteriaSelectList goes here.... model.SearchCriteria = searchCriteriaSelectList; return View(model); } } //Code for Index.cshtml @model SearchCriteriaViewModel @{ ViewBag.Title = "Index"; } <p> @Html.DropDownListFor(model => model.SearchCriteria, new SelectList(SearchCriteria, "Value", "Text")) </p>