コード例 #1
0
 private void btnSharePage_Click(object sender, System.EventArgs e)
 {
     if (string.IsNullOrEmpty(this.TemporaryProductId))
     {
         this.ShowMsg("请先添加要分享的商品", false);
         return;
     }
     if (string.IsNullOrEmpty(this.txttitle.Value))
     {
         this.ShowMsg("请输入分享页标题!", false);
         return;
     }
     this.TemporaryProductId = null;
     this.shareId            = new int?(ProductHelper.AddShareLine(new ShareProductInfo
     {
         ShareTitle = this.txttitle.Value
     }, this.TemporaryProductId));
     this.ReloadProductOnSales(false);
 }