25 lines
652 B
C#
25 lines
652 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
using IronIntel.Contractor.Site.Security;
|
|
|
|
public partial class Security_UserToContractorPage : UserToContractorPage
|
|
{
|
|
protected string IID;
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
string methodName = Request.Form["MethodName"];
|
|
if (!string.IsNullOrEmpty(methodName))
|
|
{
|
|
ProcessRequest(methodName);
|
|
}
|
|
else if (!IsPostBack)
|
|
{
|
|
//IID = GetCurrentLoginSession().User.UID;
|
|
}
|
|
Title = PageTitle;
|
|
}
|
|
} |