// GET: /AutocompleteAutofill/
 public ActionResult Autofill()
 {
     ViewBag.datasource = Flowers.GetFlowers();
     return(View());
 }
        //
        // GET: /Sorting/

        public ActionResult Sorting()
        {
            ViewBag.datasource = Flowers.GetFlowers();
            return(View());
        }
Example #3
0
 // GET: //
 public ActionResult Methods()
 {
     ViewBag.datasource = Flowers.GetFlowers();
     return(View());
 }
Example #4
0
 protected void Page_Load(object sender, EventArgs e)
 {
     this.selectFlower.DataSource = Flowers.GetFlowers();
 }