基本信息
源码名称:用于后台管理系统,mvc4+easyUI技术
源码大小:6.11M
文件格式:.rar
开发语言:C#
更新时间:2015-04-01
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
ASP.NET权限管理系统源代码MVC架构源代码EasyUI框架源代码
public BaseException()
{
this.outermostException = null;
this.exceptionName = null;
this.exceptionMessage = null;
this.innerExceptionName = null;
this.innerExceptionMessage = null;
this.targetSite = null;
this.stackInfo = null;
this.sourceErrorFile = null;
this.sourceErrorRowID = null;
this.isShow = false;
try
{
this.Exception = HttpContext.Current.Application["LastError"] as Exception;
if (this.Exception != null)
{
this.outermostException = this.Exception;
if ((this.Exception is HttpUnhandledException) && (this.Exception.InnerException != null))
{
this.Exception = this.Exception.InnerException;
}
this.ExceptionName = this.GetExceptionName(this.Exception);
this.ExceptionMessage = this.GetExceptionMessage(this.Exception);
if (this.Exception.InnerException != null)
{
this.InnerExceptionName = this.GetExceptionName(this.Exception.InnerException);
this.InnerExceptionMessage = this.GetExceptionMessage(this.Exception.InnerException);
}
this.TargetSite = this.GetTargetSite(this.Exception);
this.StackInfo = this.GetStackInfo(this.Exception);
if ((this.outermostException is HttpUnhandledException) && (this.outermostException.InnerException != null))
{
this.StackInfo = this.StackInfo "\r\n<a href='#' onclick=\"if(document.getElementById('phidden').style.display=='none') document.getElementById('phidden').style.display='block'; else document.getElementById('phidden').style.display='none'; return false;\"><b>[" this.outermostException.GetType().ToString() "]</b></a>\r\n";
this.StackInfo = this.StackInfo "<pre id='phidden' style='display:none;'>" this.outermostException.StackTrace "</pre>";
}
this.SourceErrorFile = this.GetSourceErrorFile();
this.SourceErrorRowID = this.GetSourceErrorRowID();
this.IsShowStackInfo = true;
}
HttpContext.Current.Session["LastError"] = null;
}
catch (Exception exception)
{
this.ExceptionMessage = "异常基页出错" exception.Message;
}
}