24 lines
533 B
C#
24 lines
533 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
using System.IO;
|
|
|
|
namespace Education.Forms
|
|
{
|
|
public partial class _500 : FormBase
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
lbErrCode.Text = Request["errcode"];
|
|
|
|
if (PublicVariable.DEBUG)
|
|
{
|
|
Panel1.Visible = true;
|
|
txtErrLog.Text = File.ReadAllText(Server.MapPath(string.Format(@"~/Log/{0}.txt", lbErrCode.Text)));
|
|
}
|
|
}
|
|
}
|
|
} |