加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Global.asax.cs 1.57 KB
一键复制 编辑 原始数据 按行查看 历史
codeman35 提交于 2016-01-05 19:43 . no commit message
namespace lxwmvc
{
using System;
using System.Web;
using System.Data;
using System.Collections;
using System.Reflection;
using System.Collections.Specialized;
using lxwmvc;
using System.Text;
using System.Timers;
using System.Text.RegularExpressions;
/// <summary>
///
/// </summary>
public class globalapplication : HttpApplication
{
/// <summary>
///
/// </summary>
public globalapplication()
{
Error += new EventHandler(globalapplication_error);
}
void globalapplication_error(object sender, EventArgs e)
{
}
/// <summary>
///
/// </summary>
public void Application_OnStart()
{
try
{
//ʼ˵Ϣ
applicationhelper.initmenupower();
}
catch (Exception ex)
{
throw ex;
}
}
/// <summary>
///
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Application_BeginRequest(Object sender, EventArgs e)
{
}
/// <summary>
///
/// </summary>
public void Application_OnEnd()
{
//ر
}
protected void Application_Error(Object sender, EventArgs e)
{
Exception ex = Server.GetLastError();
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化