嗨,我有以下贝宝付款代码。在这里,我将其重定向到贝宝沙箱进行测试。我对此有以下疑问
1)如何识别付款意味着如果任何用户付款,它将如何将钱转移到特定帐户(商户)
2)在paypal网站,支付金额后,用户可以选择返回网站,如果他点击了,他会重定向到我的网站http://Myrurl/Payments.aspx?cc=success。根据查询字符串,我将在我的数据库中更新他的付款。
问题是用户支付保险箱后,如果他没有点击返回站点,那么他的付款将不会在我的数据库中更新。
请给我任何解决方案或如何实施贝宝代码。
<div style="display: block;" align="center">
<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick" />
<input type="hidden" name="business" value="solly.tamari@gmail.com" />
<input type="hidden" name="lc" value="US" />
<input type="hidden" name="item_name" value="" />
<input type="hidden" name="item_number" value="" />
<input type="hidden" name="amount" value="" />
<input type="hidden" name="currency_code" value="USD" />
<input type="hidden" name="button_subtype" value="services" />
<input type="hidden" name="notify_url" value=" " />
<input type="hidden" name="return" value="http://localhost:17743/payments.aspx?cc=success" />
<input type="hidden" name="cancel_return" value="http://localhost:17743/payments.aspx?cc=cancel" />
<input type="hidden" name="bn" value="PP-BuyNowBF:btn_paynowCC_LG.gif:NonHostedGuest" />
<input name="imgCreditcard" style="text-align: center;" type="image" src="images/pay.jpg"
border="0" alt="PayPal - The safer, easierway to pay online!" /><!-- paypal1 ~/images/paypal1.jpg-->
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1"
height="1" />
<div id="divBack" runat="server" style="margin-left: -625px;" onclick="document.location.href=('../Home.aspx')">
</div>
</form>
</div>