问题描述
我在做一个购物车,需要在线支付,也就是支付宝,我应该怎么做啊??请高手指点指点
解决方案
解决方案二:
sf
解决方案三:
有示例,搜索一下
解决方案四:
我记得支付宝网站上面有集成例子的
解决方案五:
tantj我记得支付宝网站上面有集成例子的
解决方案六:
能把网址发给我吗??
解决方案七:
https://www.alipay.com/cooperate/btools_shop.htm
解决方案八:
我要的不是这个网址,我是说我现在有接口,但不知道怎么在.net下写,也就是购物完成后,点提交按钮时,用的是支付宝,我应该怎么在提交按钮下写代码???
解决方案九:
我做过快钱的.也是快钱提供接口.很简单呀?
解决方案十:
在网上搜搜吧。。很多的。。。ASP和.NET的都有。
解决方案十一:
QQ152349我告你我也是才做了一个!
解决方案十二:
protectedvoidbtnSub_Click(objectsender,EventArgse){//按时构造订单号;System.DateTimecurrentTime=newSystem.DateTime();currentTime=System.DateTime.Now;stringout_trade_no=currentTime.ToString("g");out_trade_no=out_trade_no.Replace("-","");out_trade_no=out_trade_no.Replace(":","");out_trade_no=out_trade_no.Replace("","");Randomr=newRandom();stringrad=r.Next(1000,9999).ToString();out_trade_no=out_trade_no+rad;//业务参数赋值;stringgateway="https://www.alipay.com/cooperate/gateway.do?";//'支付接口stringservice="create_direct_pay_by_user";stringpartner="2088002163883601";//partner合作伙伴ID保留字段stringsign_type="MD5";stringsubject="充值金额"+txtPay.Text+"¥";//subject商品名称stringbody="代理充值";//body商品描述stringpayment_type="1";//支付类型stringtotal_fee=txtPay.Text;//总金额0.01~50000.00stringshow_url="http://daili.linkyee.com";stringseller_email="jlchina.org@163.com";//卖家账号stringkey="ug3zsjo9gaw4zgfdi60jitxo90606153";//partner账户的支付宝安全校验码stringreturn_url="http://daili.linkyee.com/background/alopay_return.aspx";//服务器通知返回接口stringnotify_url="http://daili.linkyee.com/background/alopay_notify.aspx";//服务器通知返回接口string_input_charset="utf-8";AliPayap=newAliPay();stringaliay_url=ap.CreatUrl(gateway,service,partner,sign_type,out_trade_no,subject,body,payment_type,total_fee,show_url,seller_email,key,return_url,_input_charset,notify_url);DBAccessdb=newDBAccess();stringsqlStr=string.Format("insertintopaylog(orderid,uid,orderinfo,orderpay)values('{0}',{1},'{2}',{3})",out_trade_no,Session["uid"].ToString(),subject,total_fee);if(db.OperateData(sqlStr)){db.Dispose();Response.Redirect(aliay_url);Response.Write("<ahref="+aliay_url+"target=_blank></a>");}db.Dispose();Response.Write("<scriptlanguage=javascript>window.parent.location.href='"+aliay_url+"';</script>");}不会+我QQ152349