来自asp.net页面的paypal支付集成

时间:2010-05-16 02:03:02

标签: vb.net paypal

任何人都可以详细说明使用vb.net发送从asp.net网页收集的数据所需的详细信息,该网站上有一堆文字框,用于名字,姓氏,地址......项目价格,数量,总数价格...到paypal进行处理和结算?

我从未使用过PayPal,所以我假设paypal会获得此信息并生成一个发送给用户的账单。

提前致谢

2 个答案:

答案 0 :(得分:1)

以下article应该向您解释大部分流程。如需进一步阅读,您还可以查看PayPal开发人员documentation

<强>更新

以下是当前版本的ASP.NET(撰写本文时为4.5)的更新example

答案 1 :(得分:1)

将PayPal集成到网站vb.net

  1. 打开cmd输入“ http://www.catalog.update.microsoft.com/search.aspx?q=kb3140245”(安装nuGetPackage的Windows更新)
  2. 打开cmd输入reg add "HKLM\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Client" /v DisabledByDefault /t REG_DWORD /d 0 /f /reg:32(注册cmd更新)
  3. 在项目解决方案中注册nuGet更新。 转到:https://devblogs.microsoft.com/nuget/deprecating-tls-1-0-and-1-1-on-nuget-org/
  4. NuGet客户端和PowerShell注册表。
  5. 在解决方案中安装Paypal nuGet软件包
  6. 在项目中添加Paypal SDK参考。
  7. 添加Paypal配置。
  8. NuGet管理器程序包JSON卸载。
  9. 工具-> nuget管理器->程序包管理器控制台粘贴Install-Package Newtonsoft.Json -Version 6.0.1,输入。
  10. 在startupwizard的vb文件中添加paypal1中的代码。

https://drive.google.com/file/d/1HXChrl0XWR_sE_rZCtGAvgWu24C55KEV/view?usp=sharing