来自 ASP.NET 页面的 Paypal 支付集成

发布于 2024-09-01 12:34:07 字数 164 浏览 2 评论 0原文

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

我从未与贝宝合作过,所以我假设贝宝会获取此信息并生成账单发送给用户。

提前致谢

can anyone detail the particulars that are required to send data collected from a asp.net web page using vb.net that has a bunch of text boxes for first name, last name, address... item price, quantity, total price... to paypal for processing and settlement?

i have never worked with paypal so i am assuming paypal will get this info and generate a bill to send the user.

thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浅听莫相离 2024-09-08 12:34:07

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

更新

这是更新的当前版本 ASP.NET 的示例(撰写本文时为 4.5)

The following article should explain much of the process to you. For further reading you can also check out the PayPal developer documentation.

Update:

Here is an updated example for current version of ASP.NET (4.5 at the time of writing)

靖瑶 2024-09-08 12:34:07

将 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/查看?usp=共享

Integrate PayPal into website vb.net

  1. Open cmd enter "http://www.catalog.update.microsoft.com/search.aspx?q=kb3140245" (install windows update for nuGetPackage)
  2. Open cmd enter reg add "HKLM\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Client" /v DisabledByDefault /t REG_DWORD /d 0 /f /reg:32(Register cmd update)
  3. Register nuGet update in solution of the project.
    Goto : https://devblogs.microsoft.com/nuget/deprecating-tls-1-0-and-1-1-on-nuget-org/
  4. NuGet clients and PowerShell reg.
  5. Install Paypal nuGet package in solution
  6. Add Paypal SDK reference in the project.
  7. Add configurations for Paypal.
  8. NuGet manager package JSON uninstall.
  9. Tools -> nuget manager-> package manager console paste Install-Package Newtonsoft.Json -Version 6.0.1, enter.
  10. Add in vb file of startupwizard the code in paypal1.

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文