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 commonpage : ContractorBasePage { protected void Page_Load(object sender, EventArgs e) { var action = Request.Form["action"]; if (action != null) { switch (action.ToUpper()) { case "LOGOUT": DoLogout(); break; } } Response.End(); } }