首次推送

This commit is contained in:
lym
2026-03-09 00:13:46 +08:00
commit b19613bb31
13974 changed files with 2767735 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Data.SqlClient;
namespace Mtxfw.VipSite
{
public partial class Admin_Member_Networkmap0 : Mtxfw.Utility.MemberBase
{
public Mtxfw.DAL.user_info daoUser = new Mtxfw.DAL.user_info();
protected static Mtxfw.Utility.Config config = new Mtxfw.Utility.Config("");
public int gtype = 0, InitID=68;
protected override void OnLoad(EventArgs e)
{
base.OnLoad(e);
string hostname = Request.Url.Host;
if (gtype == 1)
{
InitID = 69;
}
else if (gtype == 2)
{
InitID = 70;
}
else if (gtype == 3)
{
InitID = 71;
}
else if (gtype == 4)
{
InitID = 72;
}
else if (gtype == 5)
{
InitID = 73;
}
Page.Title = "网络图谱 - " + GetWebName;
}
}
}