我是新的MVC。我想把PayPal整合到我的网站上。我试试这个链接http://logcorner.wordpress.com/2013/09/05/asp-net-mvc-paypal-integration/一切都很好。现在如何在Redirect动作方法中获取一些信息。我的Action方法
public ActionResult RedirectFromPaypal()
{
return View();
}
在php中这样做:
$item_number = $_POST["item_number"];
$item_name = $_POST["item_name"];
请帮帮我。
我推荐阅读这个教程,它介绍了如何使用PayPal设置结帐和付款。非常好。它使用web表单,所以如果你需要什么面向MVC的东西,那么请阅读本教程。
这两个结合起来应该有你需要的一切。
为教程IPN与MVC尝试如何使用paypal与asp.net MVC
试试这两个链接http://blog.liamcavanagh.com/2012/06/how-to-use-paypal-with-asp-net-mvc/http://buildingwebapps.blogspot.com/2012/01/single-item-paypal-buttons-and.html
一旦你在你的RedirectFromPaypal()上得到通知,你将调用PayPal获得交易细节,细节将作为键/值对,你可以访问它们作为string transactionID = Request["txn_id"];string sAmountPaid = Request["mc_gross"];