Closed. This question does not meet Stack Overflow guidelines。它当前不接受答案。
想改善这个问题吗?更新问题,以便将其作为on-topic用于堆栈溢出。
7年前关闭。
Improve this question
PayPal GitHub上有很多代码示例,展示了如何以各种语言(php,VB等)实现IPN监听器。但是,没有ASP.NET MVC。有人成功实现了吗?还是像其他代码示例一样,是实现它的首选/官方方式?
想改善这个问题吗?更新问题,以便将其作为on-topic用于堆栈溢出。
7年前关闭。
Improve this question
PayPal GitHub上有很多代码示例,展示了如何以各种语言(php,VB等)实现IPN监听器。但是,没有ASP.NET MVC。有人成功实现了吗?还是像其他代码示例一样,是实现它的首选/官方方式?
最佳答案
有关包含PayPal IPN的简单MVC站点结构的简洁视频:
http://www.asp.net/mvc/videos/mvc-1/aspnet-mvc-storefront/aspnet-mvc-storefront-part-22-restructuring-rerouting-and-paypal
直接链接到他的IPN Controller
https://mvcsamples.svn.codeplex.com/svn/trunk/Kona.Web/Controllers/PayPalController.cs
MVC/C#示例:
http://www.markstraley.com/Code/PayPalIPN
谢谢@Earlee!