本文整理汇总了C#中Result.Get_Title_by_Student_Pricing方法的典型用法代码示例。如果您正苦于以下问题:C# Result.Get_Title_by_Student_Pricing方法的具体用法?C# Result.Get_Title_by_Student_Pricing怎么用?C# Result.Get_Title_by_Student_Pricing使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Result
的用法示例。
在下文中一共展示了Result.Get_Title_by_Student_Pricing方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ProcessPost
private void ProcessPost()
{
List<string> post = new List<string>(Request.Form.AllKeys);
int title_id;
if (post.Contains(Constants.QueryKeys.POST_TITLE_ID) && Int32.TryParse(Request.Form[Constants.QueryKeys.POST_TITLE_ID], out title_id) && post.Contains(Constants.QueryKeys.POST_SKU))
{
string sku = Request.Form[Constants.QueryKeys.POST_SKU];
string w = Request.Form[Constants.QueryKeys.POST_WISHLIST_ID];
int quantity = 1;
if (Request.Form[Constants.QueryKeys.POST_QUANTITY] != null && Int32.TryParse(Request.Form[Constants.QueryKeys.POST_QUANTITY], out quantity)) { }
SiteWish wish = new SiteWish();
wish.Del_Whish_Header(Convert.ToInt32(w));
AddResponse r = AddToCart(title_id, sku, quantity);
Result result = new Result();
string Sap = "0";
Sap= result.Get_Title_by_Student_Pricing(title_id);
string output;
if (Sap=="1" && r == AddResponse.Success)
output = this.BuildResponse(AddResponse.Student);
else
output = this.BuildResponse(r);
Response.Write(output);
}
}