【发布时间】:2014-04-20 01:04:27
【问题描述】:
我是 MVC 的新手。我想将 PayPal 集成到我的网站。我试试这个链接http://logcorner.wordpress.com/2013/09/05/asp-net-mvc-paypal-integration/ 一切正常。现在如何在重定向操作方法中获取一些信息。我的操作方法
public ActionResult RedirectFromPaypal()
{
return View();
}
在php中做如下:
$item_number = $_POST["item_number"];
$item_name = $_POST["item_name"];
请帮帮我。
【问题讨论】:
标签: asp.net-mvc paypal-sandbox