Paypal按钮格式不正确

本文关键字:不正确 格式 按钮 Paypal | 更新日期: 2023-09-27 18:16:23

干杯!我有我的贝宝按钮在我的ASP问题。. NET c#项目,每当我点击"添加到购物车",paypal给我以下错误:

"您用于进入PayPal系统的链接包含格式错误的商品金额。"

我的按钮是这样的:

 <form target="_self" action="https://www.paypal.com/cgi-bin/webscr" method="post">
                <!-- Identify your business so that you can collect the payments. -->
                <input type="hidden" name="business" value="MyEmail@Email.com">
                <!-- Specify a PayPal Shopping Cart Add to Cart button. -->
                <input type="hidden" name="cmd" value="_cart">
                <input type="hidden" name="add" value="1">
                <!-- Specify details about the item that buyers will purchase. -->
                <input type="hidden" name="item_name" value="<%# Eval("ProductName") %>">
                <input type="hidden" name="amount" value="<%# Eval("ProductPrice", "{0:0.00}") %>">
                <input type="hidden" name="currency_code" value="DKK">
                <input type="image" name="submit" border="0" src="https://www.paypal.com/en_US/i/btn/btn_cart_LG.gif"
                    alt="PayPal - The safer, easier way to pay online">
                <img alt="" border="0" width="1" height="1" src="https://www.paypal.com/en_US/i/scr/pixel.gif">
                </form>

在我的SQL数据库中我的"ProductPrice"是一个数据类型:decimal(18,0)我尝试将其更改为数据类型:money,但没有太大成功。

我想说的是,我不是一个经验丰富的编码员/程序员像你们这些家伙,我收到的每一个回复都将非常感谢我:)

谢谢!

Paypal按钮格式不正确

快速修复:

<input type="hidden" name="amount" value="<%# Eval("ProductPrice", "{0:0.00}").ToString().Replace(",", ".") %>">