add site
This commit is contained in:
26
Site/IronIntelMain.aspx.cs
Normal file
26
Site/IronIntelMain.aspx.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using IronIntel.Contractor.Site;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
|
||||
public partial class IronIntelMain : MainBasePage
|
||||
{
|
||||
protected void Page_Load(object sender, EventArgs e)
|
||||
{
|
||||
string tp = Request.Params["tp"];
|
||||
if (string.Compare(tp, "ashx", true) == 0)
|
||||
{
|
||||
ProcessRequest();
|
||||
}
|
||||
else if (!IsPostBack)
|
||||
{
|
||||
Title = PageTitle;
|
||||
if (CheckLoginSession())
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user