コード例 #1
0
 void selectPromotion()
 {
     promotions = new PromotionList();
     promotions.selectPromotion();
     GridView1.DataSource = promotions.Values;
     GridView1.DataBind();
 }
コード例 #2
0
        void fetchSelect()
        {
            PromotionList promotions = new PromotionList();

            promotions.selectPromotion();
            DropDownList2.DataSource     = promotions.Values;
            DropDownList2.DataTextField  = "PromotionName";
            DropDownList2.DataValueField = "PromotionID";
            DropDownList2.DataBind();
        }