博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Global.asax
阅读量:6252 次
发布时间:2019-06-22

本文共 1301 字,大约阅读时间需要 4 分钟。

using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Security;using System.Web.SessionState;namespace Web{    public class Global : System.Web.HttpApplication    {        //当第一次请求到达网站,被HttpApplication处理之前触发           //在应用程序启动时运行的代码        protected void Application_Start(object sender, EventArgs e)        {        }        //在新会话启动时运行的代码         protected void Session_Start(object sender, EventArgs e)        {        }        //自动事件注册BenginRequest        protected void Application_BeginRequest(object sender, EventArgs e)        {        }        //验证用户的事件处理        protected void Application_AuthenticateRequest(object sender, EventArgs e)        {        }        //在出现未处理的错误时运行的代码        protected void Application_Error(object sender, EventArgs e)        {        }        //Session过期的时候        // 在会话结束时运行的代码          // 注意: 只有在 Web.config 文件中的 sessionstate 模式设置为          // InProc 时,才会引发 Session_End 事件。如果会话模式设置为 StateServer          // 或 SQLServer,则不会引发该事件          protected void Session_End(object sender, EventArgs e)        {        }        //当网站被关闭之前触发        //在应用程序关闭时运行的代码          protected void Application_End(object sender, EventArgs e)        {        }    }}

 

转载于:https://www.cnblogs.com/Harry369/archive/2013/05/28/3104261.html

你可能感兴趣的文章
js面向对象初步探究(上) js面向对象的5种写方法
查看>>
Create the Data Access Layer
查看>>
Python使用chardet包自动检测编码
查看>>
Android必知必会-Android Studio修改包名
查看>>
bootstrap -- 一个标签中,同时有 col-xs , col-sm , col-md , col-lg
查看>>
IEEE754标准的浮点数存储格式
查看>>
Babel插件开发入门指南
查看>>
浅谈iOS 自动调节文本高度
查看>>
oracle易忘函数用法(2)
查看>>
总结系列_14(OpenCV2.4.3的新特征以及安装方法)
查看>>
虚拟地址空间分配
查看>>
HDU 4465 - Candy(概率与数学优化)
查看>>
提高你的Java代码质量吧:使用构造函数协助描述枚举项
查看>>
Struts2 学习笔记20 类型转换part2 写自己的转换器
查看>>
网站接入支付宝
查看>>
mybatis+spring配置
查看>>
新浪微博客户端(31)-显示相册图片上的GIF标记
查看>>
idea 项目打包发布
查看>>
x:Name 与 Name 有时候是不一样的。
查看>>
【ASP.NET】如何在asp后台实现弹出对话框
查看>>