This commit is contained in:
2023-04-28 12:22:26 +08:00
parent 88e0a25ecd
commit c9723008af
1047 changed files with 443540 additions and 1 deletions

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,27 @@
using IronIntel.Contractor.Site.Contact;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class ManageContact : ContactBasePage
{
protected void Page_Load(object sender, EventArgs e)
{
string methodName = Request.Form["MethodName"];
if (!string.IsNullOrEmpty(methodName))
{
ProcessRequest(methodName);
}
else if (!IsPostBack)
{
Title = PageTitle;
if (CheckLoginSession())
{
//TODO
}
}
}
}