PayPal Main Content
以HTML方式实现Paypal在线支付
提交Paypal页面:
更多提交变量可以参考Paypal官方网站:
https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_html_Appx_websitestandard_htmlvariables
接收Paypal返回值:
更多接收变量可以参考Paypal官方网站:
https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_html_IPNandPDTVariables
或我的博客:http://blog.sina.com.cn/s/blog_5e06afe00100ehjx.html
下面是验证支付的真实性:
<form target="_self" action="https://www.paypal.com/cgi-bin/webscr" <input type="hidden" name="add" value="1"> <input type="hidden" name="cmd" value="_xclick"> <input type="hidden" name="business" value="<%= business %>"> <input type="hidden" name="item_name" value="<%= item_name %>"> <input type="hidden" name="item_number" value="<%= item_number %>"> <input type="hidden" name="amount" value="<%= amount %>"> <input type="hidden" name="no_note" value="1"> <input type="hidden" name="quantity" value="1"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="bn" value="PP-BuyNowBF"> <input type="hidden" name="rm" value="2"> <input type="hidden" name="return" value="http://"> </form> |
更多提交变量可以参考Paypal官方网站:
https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_html_Appx_websitestandard_htmlvariables
接收Paypal返回值:
Request.Form["payment_status"].ToString().Trim(); Request.Form["item_name"].ToString().Trim(); Request.Form["item_number"].ToString().Trim(); Request.Form["business"].ToString().Trim(); Request.Form["verify_sign"].ToString().Trim(); Request.Form["payment_gross"].ToString().Trim(); Request.Form["mc_currency"].ToString().Trim(); |
更多接收变量可以参考Paypal官方网站:
https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_html_IPNandPDTVariables
或我的博客:http://blog.sina.com.cn/s/blog_5e06afe00100ehjx.html
下面是验证支付的真实性:
private bool VerifyIPN() { } |
文章来源:随风
文章URL: http://blog.sina.com.cn/s/blog_5e06afe00100ehju.html
录入时间:2009-08-13 15:50:15 (关注指数:879)
与PayPal在线支付,在线支付有关的文章
关于PayPal在线支付,在线支付的评论共有 0 条评论) |