コード例 #1
0
        private void btnBtachAdd_Click(object sender, System.EventArgs e)
        {
            string text = base.Request.Form["CheckBoxGroup"];

            if (string.IsNullOrEmpty(text))
            {
                this.ShowMsg("请先选择要批量添加的商品", false);
                return;
            }
            ProductHelper.AddShareProducts(this.shareId, text);
            this.CloseWindow();
        }