コード例 #1
0
 public ActionResult AjaxGetProductInfo(string ProductLink)
 {
     Maticsoft.BLL.SNS.Products products = new Maticsoft.BLL.SNS.Products();
     string text = ViewModelBase.RegexProductId(ProductLink);
     if (text == "No")
     {
         return base.Content("No");
     }
     string productImageUrl = products.GetProductImageUrl(Globals.SafeLong(text, (long) 0L));
     if (productImageUrl == "No")
     {
         return base.Content("No");
     }
     return base.Content(text + "|" + productImageUrl);
 }