using System.Collections.Generic;
namespace DropDownModelExample
public class HomeController : Controller
public ActionResult Index()
var model = new DropDownModel
Items = new List<SelectListItem>
new SelectListItem { Text = "First (Default)", Value = "1" },
new SelectListItem { Text = "Second (Selected)", Value = "2", Selected = true },
new SelectListItem { Text = "Third", Value = "3" },
new SelectListItem { Text = "Forth", Value = "4" },