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

33 lines
808 B
C#

using IronIntel.Contractor.Site;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class ErrorPage : ContractorBasePage
{
protected string Code = "";
protected void Page_Load(object sender, EventArgs e)
{
//string detail;
//using (var reader = new StreamReader(Request.InputStream))
//{
// detail = reader.ReadToEnd();
//}
//if (!string.IsNullOrEmpty(detail))
//{
// error_detail.InnerHtml = HttpUtility.HtmlEncode(detail).Replace("\n", "<br/>");
//}
Code = Request.Params["code"];
}
protected override bool AllowCurrentLoginSessionEnter()
{
return true;
}
}