asp.net c# 中线程和会话对 paypal 机制有何影响
现在,我正在寻找带有 C# 集成的 ASP.NET 4.0 的完美时间估计。由于工作流程是用户在网站上订阅时进行的,因此他应该支付订阅费用。嗯,这是现在的正常用例。而是开发人员在执行支付交易时如何管理会话和线程。
事实上,我对线程和会话没有太多了解,突然我有一个任务来构建这个机制。那么,如何管理这一切呢?这样我们的交易就更加安全。 (当然 paypal 已经照顾好了。我们可以通过多少种方式将 paypal 与 asp.net 应用程序集成?)
Now a days i am looking for the perfect time estimation for the asp.net 4.0 with c# integration. since workflow is while user subscribing on the site, he should pay for subscription. Well this is the normal usecase now a days. but how developers manages the sessions and threading while performing the payment transactions.
In fact i don not have much knowledge about threading and session and suddenly i have the task to build this mechanism. well, how to manage all this ? so that transaction is more secure from our side. (sure paypal has taken care. and how many ways we can integrate paypal with asp.net application ?)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要制作一个“脚本”来处理来自 paypal 的网址。
前任。当用户付款确认后,paypal 会在 www.yousite.com/paypalhandler.aspx 上发送信息。
此信息包含 userId 等。现在脚本会对您的数据库进行必要的更新。
You need to make a "script" that handles a url from paypal.
Ex. When user payment is confirmed paypal sends info on www.yousite.com/paypalhandler.aspx
This info contains userId etc etc. And now the script makes the necessary updates to your db.