Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/asp.net/30.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
使用网站支付标准在asp.net网站中集成Paypal沙盒_Asp.net_Paypal - Fatal编程技术网

使用网站支付标准在asp.net网站中集成Paypal沙盒

使用网站支付标准在asp.net网站中集成Paypal沙盒,asp.net,paypal,Asp.net,Paypal,我已经在我的asp.net中集成了paypal沙盒,使用的网站支付标准如下 <form name="paypal" action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post"> <input type="hidden" name="cmd" value="_xclick" /> <input type="hidden" name="b

我已经在我的asp.net中集成了paypal沙盒,使用的网站支付标准如下

<form name="paypal" action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick" />
                            <input type="hidden" name="business" value="abc_131556943_biz@gmail.com" />

                            <input type="hidden" name="item_name" value="MyItem" />

                            <input type="hidden" name="amount" value="0.01" />

                            <input type="hidden" name="return" value="http://stackoverflow.com/questions/ask" />
                            <input type="hidden" name="cancel_return" value="http://stackoverflow.com" />
                            <input type="hidden" name="notify_url" value="http://stackoverflow.com" />
                            <input type="hidden" name="no_shipping" value="1" />
                            <input type="submit" value="Please Wait....." style="visibility: hidden" />
                            </form>

现在的问题是,当我重定向到贝宝,然后首先它要求登录到贝宝沙箱帐户。我想问,是不是有必要登录到贝宝沙箱付款。是否有任何参数,我们可以在隐藏字段中发送,这样它就不会要求沙盒登录


谢谢,Rajbir

我通常会在沙箱中预验证,以便在测试时跳过/保持正常的代码流。除了使用真实账户,我不知道还有什么可以绕过它的