using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace HelloWorldMvcApp
public class HomeController : Controller
public ActionResult Index()
var vm = new IndexViewModel();
vm.Sel = new List<SelectListItem>();
vm.Sel.Add(new SelectListItem() { Text = "Opt1", Value = "1" });
vm.Sel.Add(new SelectListItem() { Text = "Opt2", Value = "2" });
vm.Sel.Add(new SelectListItem() { Text = "Opt3", Value = "3" });