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

23 lines
591 B
C#

using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace Mtxfw.VipSite
{
public partial class CloseMsg : System.Web.UI.Page
{
public Mtxfw.Utility.Config config = new Mtxfw.Utility.Config("");
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
Title = config.webName;
Page.MetaDescription = config.webName + " - " + config.webDescription;
}
}
}
}