Ejemplo n.º 1
0
 public ActionResult DropdownListFor(DropdownlistModel model)
 {
     //posted value is obtained from the model
     model.data = datasource;
     model.val  = model.val;
     return(View(model));
 }
Ejemplo n.º 2
0
        public ActionResult DropdownListFor()
        {
            DropdownlistModel model = new DropdownlistModel();

            model.data = datasource;
            model.val  = "Badminton";
            return(View(model));
        }