C# asax文件使用实例

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Timers;
using System.Text.RegularExpressions;
using System.Web.Security;
using System.Web.SessionState;
using Quartz;
using Quartz.Impl;


namespace hcy
{
    public class Global : System.Web.HttpApplication
    {
        protected void Application_Start(object sender, EventArgs e)
        {
//该事件处理程序在Web应用程序被启动后立刻被调用。因此,该事件在一个Web应用程序的整个生命周期内仅仅触发一次。这是定义Web应用程序全程所用到的应用程序级数据的理想位置

          //相当于java servlet中的init()方法        }

        protected void Session_Start(object sender, EventArgs e)
        {
 // 当一个新的会话被启动时运行的代码。
        }

        protected void Application_BeginRequest(object sender, EventArgs e)
        {
          //可以在此对所有用户请求头处理
        }

        protected void Application_AuthenticateRequest(object sender, EventArgs e)
        {

        }

        protected void Application_Error(object sender, EventArgs e)
        {
// 当一个未处理过的错误发生时运行的代码。
// 将错误记录到事件日志。

  Exception ex = Server.GetLastError();

  EventLog ev = new EventLog("Application");

  ev.WriteEntry(ex.Message, EventLogEntryType.Error);

  Server.ClearError();

  Response.Write("This app has bombed. Sorry!");


        }

        protected void Session_End(object sender, EventArgs e)
        {
// 当一个会话结束时运行的代码。
        }

        protected void Application_End(object sender, EventArgs e)
        {
    //运行应用程序关闭的代码。
        }
    }
}


1、 在 Windows 2000 和 Windows XP 上的默认安装中,ASP.NET 在辅助进程中运行 Web 应用程序代码。此进程的标识默认为名为 ASPNET 的无特权本地帐户。在 ASP.NET 的 beta 版中,该进程的标识是 System,这是一个功能强大的管理员帐户,拥有许多计算机特权。
2、此文件必须放在网站根目录下才能执行.

你可能感兴趣的:(C++,c,quartz,C#,asp.net)