protected void Page_Load(object sender, System.EventArgs e) { System.Collections.Generic.Dictionary <string, string> dictionary = new System.Collections.Generic.Dictionary <string, string>(); dictionary["p1_MerId"] = base.Request["p1_MerId"]; dictionary["r0_Cmd"] = base.Request["r0_Cmd"]; dictionary["R1_Code"] = base.Request["R1_Code"]; dictionary["R2_TrxId"] = base.Request["R2_TrxId"]; dictionary["r3_Amt"] = base.Request["r3_Amt"]; dictionary["r4_Cur"] = base.Request["r4_Cur"]; dictionary["r5_Order"] = base.Request["r5_Order"]; dictionary["r6_Type"] = base.Request["r6_Type"]; string text = base.Request["hmac"]; if (!(dictionary["R1_Code"] == "1")) { Log.Write("支付系统错误 R1_Code:" + dictionary["R1_Code"] + " orderid:" + dictionary["r5_Order"]); base.Response.Write("支付系统错误"); } else { string signSource = PayHelper.GetSignSource(dictionary); string aKey = ApplicationSettings.Get("key_hfht"); string text2 = Encrypt.HmacSign(signSource, aKey); if (!(text.ToLower() == text2.ToLower())) { Log.Write(string.Concat(new string[] { "签名错误,signSource=", signSource, " mySign=", text2, " Sign=", text })); base.Response.Write("签名错误"); } else { ShareDetialInfo shareDetialInfo = new ShareDetialInfo(); shareDetialInfo.OrderID = dictionary["r5_Order"]; shareDetialInfo.IPAddress = Utility.UserIP; shareDetialInfo.PayAmount = System.Convert.ToDecimal(dictionary["r3_Amt"]); Message message = FacadeManage.aideTreasureFacade.FilliedOnline(shareDetialInfo, 0); if (message.Success) { base.Response.Write("success"); } else { Log.Write(message.Content); } } } }
protected void Page_Load(object sender, System.EventArgs e) { string formString = GameRequest.GetFormString("account"); if (formString == "") { base.Response.Write("充值账号错误"); base.Response.End(); } int formInt = GameRequest.GetFormInt("amount", 0); if (formInt < 6) { base.Response.Write("充值金额不能低于6元"); base.Response.End(); } string text = GameRequest.GetFormString("type"); OnLineOrder onLineOrder = new OnLineOrder(); onLineOrder.OrderID = PayHelper.GetOrderIDByPrefix("hfht"); if (Fetch.GetUserCookie() == null) { onLineOrder.OperUserID = 0; } else { onLineOrder.OperUserID = Fetch.GetUserCookie().UserID; } onLineOrder.Accounts = formString; onLineOrder.OrderAmount = formInt; onLineOrder.IPAddress = GameRequest.GetUserIP(); string text3 = text; switch (text3) { case "alipay": text = "alipaywap"; onLineOrder.ShareID = 2; goto IL_289; case "weixin": text = "wxwap"; onLineOrder.ShareID = 3; goto IL_289; case "alipay-scan": text = "alipay"; this.paytype = "支付宝"; onLineOrder.ShareID = 4; goto IL_289; case "weixin-scan": text = "weixin"; this.paytype = "微信"; onLineOrder.ShareID = 5; goto IL_289; case "qq": text = "qqwap"; onLineOrder.ShareID = 6; goto IL_289; case "kuaijie": text = "bank"; onLineOrder.ShareID = 7; goto IL_289; case "qq-scan": text = "qqcode"; this.paytype = "QQ"; onLineOrder.ShareID = 8; goto IL_289; case "jd": text = "6"; onLineOrder.ShareID = 9; goto IL_289; case "baidu": text = "5"; onLineOrder.ShareID = 10; goto IL_289; } text = "4"; onLineOrder.ShareID = 1; IL_289: Message message = FacadeManage.aideTreasureFacade.RequestOrder(onLineOrder); if (!message.Success) { base.Response.Write(message.Content); base.Response.End(); } string gateway = ApplicationSettings.Get("url_hfht"); string value = ApplicationSettings.Get("parter_hfht"); string aKey = ApplicationSettings.Get("key_hfht"); string text2 = ApplicationSettings.Get("pay_url"); if (text2 == "") { text2 = "http://" + base.Request.Url.Host; } string orderID = onLineOrder.OrderID; string value2 = text2 + "/pay/hfht/notify_url.aspx"; System.Collections.Generic.Dictionary <string, string> dictionary = new System.Collections.Generic.Dictionary <string, string>(); dictionary["p0_Cmd"] = "Buy"; dictionary["p1_MerId"] = value; dictionary["p2_Order"] = orderID; dictionary["p3_Amt"] = formInt.ToString(); dictionary["p4_Cur"] = "CNY"; dictionary["p5_Pid"] = "shop"; dictionary["p6_Pcat"] = "shop"; dictionary["p7_Pdesc"] = "shop"; dictionary["p8_Url"] = value2; dictionary["pa_MP"] = "shop"; dictionary["pd_FrpId"] = text; dictionary["pr_NeedResponse"] = "1"; string signSource = PayHelper.GetSignSource(dictionary); dictionary["hmac"] = Encrypt.HmacSign(signSource, aKey); base.Response.Write(PayHelper.BuildForm(dictionary, gateway)); }