23 lines
591 B
C#
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;
|
|
|
|
}
|
|
}
|
|
}
|
|
} |