【发布时间】:2013-06-19 11:19:37
【问题描述】:
我正在开发一个丹麦网站。我创建了“立即购买”按钮,但金额有问题。
金额是 10,00 DKK 而不是 10.00 DKK。 10,00 和 10.00 有不同的含义。
如果我使用
<input type="hidden" name="amount" value="10.00" />
它有效。 但如果我使用
<input type="hidden" name="amount" value="10,00" />
它不起作用。我收到一个错误
"the link you have used to enter the paypal system contains an incorrectly formatted item amount."
有什么解决办法吗??
【问题讨论】:
标签: asp.net-mvc paypal