Files

24 lines
616 B
C#
Raw Permalink Normal View History

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("您的付款因网络原因失败,有疑问请与管理员联系", "/");
}
}
}