码迷,mamicode.com
首页 > 其他好文 > 详细

回调的使用,记的加post

时间:2016-05-11 18:09:36      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:

[HttpPost]
public void notify_url()
{
SortedDictionary<string, string> sPara = GetRequestPost();
System.IO.File.AppendAllText(Server.MapPath("~/App_Data/log.txt"), " rateCount: " + "米亚回调"+DateTime.Now.ToString());
if (sPara.Count > 0)//判断是否有带返回参数
{
Notify aliNotify = new Notify();
bool verifyResult = aliNotify.Verify(sPara, Request.Form["notify_id"], Request.Form["sign"]);

if (verifyResult)//验证成功
{
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
//请在这里加上商户的业务逻辑程序代码
int rateCount = 0;
System.IO.File.AppendAllText(Server.MapPath("~/App_Data/log.txt"), " rateCount: " + rateCount);
System.IO.File.AppendAllText(Server.MapPath("~/App_Data/log.txt"), " productReviews.Count: " + "什么情况呢");
System.IO.File.AppendAllText(Server.MapPath("~/App_Data/log.txt"), " rateMean: " + rateCount);

//——请根据您的业务逻辑来编写程序(以下代码仅作参考)——
//获取支付宝的通知返回参数,可参考技术文档中服务器异步通知参数列表

//商户订单号

string out_trade_no = Request.Form["out_trade_no"];

var targetUsert = _RegistrationInformationService.GetAllRegistrationInformations().Where(p => p.OrderNumber == out_trade_no).FirstOrDefault();
targetUsert.IsPayed = true;
_RegistrationInformationService.UpdateRegistrationInformation(targetUsert);

回调的使用,记的加post

标签:

原文地址:http://www.cnblogs.com/zhaojianwei/p/5482814.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!