PayPal捐赠按钮内的表格不起作用

时间:2013-07-27 12:33:13

标签: asp.net forms button paypal

考虑以下代码 -

<form id="Form1" runat=server defaultbutton="cmdclick" style="height: 9%;">

    <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="XT4SGK2B4H954">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>

</form>

内部表单未提交。它会在点击它时刷新页面。 什么是更好的方法?

注意:Project在ASP.NET中。

3 个答案:

答案 0 :(得分:0)

ASPX页面就像一个巨大的HTML表单,当你在没有关闭ASP的情况下抛出另一个表单时,你最终会得到嵌套表单。

要解决此问题,您需要在PayPal按钮代码开始之前关闭ASP表单,或者将PayPal按钮创建为URL并将其超链接到站点上的某些文本或图像。

答案 1 :(得分:0)

问题是HTML不允许嵌套的表单标记。

请参阅我对类似问题的回复here。我描述了一种在ASP.Net页面中包含PayPal按钮的替代方法。

希望它有所帮助。

答案 2 :(得分:0)

我通过在html页面中添加paypal代码来解决它,并通过iframe在我的asp.net页面中查看它。