fleet-contractor/Site/commonpage.aspx.cs
2023-04-28 12:22:26 +08:00

26 lines
575 B
C#

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();
}
}