干杯! 我的ASP.NET C#项目中的paypal按钮出现问题,每当我点击“添加到购物车”时,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 ,但没有太大成功。
我想提一下,我不是像你们这样经验丰富的编码员/程序员,我收到的每一个回复都会得到我的赞赏。)
谢谢!
答案 0 :(得分:1)
快速修复:
<input type="hidden" name="amount" value="<%# Eval("ProductPrice", "{0:0.00}").ToString().Replace(",", ".") %>">