Esempio n. 1
0
 protected void PopulateEntree()
 {
     //create an array
     string[] entree = { "Hamburger",
                         "Mac and Cheese","Corn Dogs",  "Spaghetti", "French Dip" };
     //bind the array to the checklist control
     CBLEntree.DataSource = entree;
     CBLEntree.DataBind();
 }
 protected void PopulateEntree()
 {
     string[] entree = { "Hamburger", "Mac and Cheese", "Corn Dogs", "Spaghetti", "French Dip" };
     CBLEntree.DataSource = entree;
     CBLEntree.DataBind();
 }