Files
g.hnyhua.cn/Mtxfw.shop/pay/kqshow.aspx.cs
2026-02-07 15:48:27 +08:00

24 lines
616 B
C#

using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class kqshow : System.Web.UI.Page
{
public string msg = "";
protected void Page_Load(object sender, EventArgs e)
{
msg = Request.QueryString["msg"].ToString().Trim();
if (msg == "0")
{
Mtxfw.Utility.Tools.Message("您已经成功付款", "/");
}
if (msg == "1")
{
Mtxfw.Utility.Tools.Message("您的付款因网络原因失败,有疑问请与管理员联系", "/");
}
}
}