26 lines
855 B
C#
26 lines
855 B
C#
|
using System;
|
|||
|
using System.Data;
|
|||
|
using System.Configuration;
|
|||
|
using System.Collections;
|
|||
|
using System.Web;
|
|||
|
using System.Web.Security;
|
|||
|
using System.Web.UI;
|
|||
|
using System.Web.UI.WebControls;
|
|||
|
using System.Web.UI.WebControls.WebParts;
|
|||
|
using System.Web.UI.HtmlControls;
|
|||
|
using System.Text;
|
|||
|
public partial class ShowError : Page
|
|||
|
{
|
|||
|
protected void Page_Load(object sender, EventArgs e)
|
|||
|
{
|
|||
|
// StringBuilder strResponse =(StringBuilder) Session["ERROINFO"];
|
|||
|
// String strResponse = Session["ERROINFO"].ToString();
|
|||
|
// Response.Write(strResponse);
|
|||
|
// lbErrtrace.Text = Session["ERROINFO"] == null ? "<22><>û<EFBFBD>е<EFBFBD>¼<EFBFBD><C2BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ǰ<EFBFBD>Ự<EFBFBD>ѹ<EFBFBD><D1B9>ڣ<EFBFBD><DAA3><EFBFBD><EFBFBD><EFBFBD><EFBFBD>µ<EFBFBD>¼<EFBFBD><C2BC>" : Session["ERROINFO"].ToString();
|
|||
|
|
|||
|
lbErrtrace.Text =Application["error"]!=null? Application["error"].ToString() : " <20><><EFBFBD><EFBFBD>ϵ<EFBFBD><CFB5><EFBFBD><EFBFBD>Ա<EFBFBD><D4B1>";
|
|||
|
Application["error"] = null;
|
|||
|
|
|||
|
}
|
|||
|
}
|