void selectPromotion() { promotions = new PromotionList(); promotions.selectPromotion(); GridView1.DataSource = promotions.Values; GridView1.DataBind(); }
void fetchSelect() { PromotionList promotions = new PromotionList(); promotions.selectPromotion(); DropDownList2.DataSource = promotions.Values; DropDownList2.DataTextField = "PromotionName"; DropDownList2.DataValueField = "PromotionID"; DropDownList2.DataBind(); }