@using ZoomLa.Components @using ZoomLaCMS.Resources @{ int statusCode = ViewBag.statusCode; string title = L.错误提示; if (statusCode == 404) { title = "页面不存在"; switch (SiteConfig.SiteOption.Safe_ErrorShow) { case 1: Context.Response.Redirect("/Default"); break; case 2: Context.Response.Redirect(SiteConfig.SiteOption.Safe_ErrorShow_Url); break; default: break; } } else if (statusCode >= 500) { title = L.服务器内部错误; } } @section head{@title} @section content{
@Html.Partial("_leftmenu")
未能正确获取服务,造成此现象的原因可能是:
  1. 请求的URL已经失效或变更;
  2. 客户端凭据或权限访问失效;
  3. 服务端未部署相应功能或服务;
  4. 其它机制触发的应用信息规避。
} @section script{ }