add site
This commit is contained in:
1270
Site/Contact/ManageContact.aspx
Normal file
1270
Site/Contact/ManageContact.aspx
Normal file
File diff suppressed because it is too large
Load Diff
27
Site/Contact/ManageContact.aspx.cs
Normal file
27
Site/Contact/ManageContact.aspx.cs
Normal 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
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user