zoukankan      html  css  js  c++  java
  • ASP.net Application及Session 的start end 方法总结

    经过几天的摸索,试验,今天终于可以将Application及Session对象的Start和End方法做下总结了.

    Application_start: 第一个访问网站的用户会触发该方法. 通常会在该方法里定义一些系统变量,如聊天室的在线总人数统计,历史访问人数统计的初始化等等均可在这里定义.

    Application_end:网站关闭,或重启时,会触发该方法. 没有进行过多试验.

    Session_start : 每个用户访问网站的第一个页面时触发;

    Session_end:使用了session.abandon(),或session超时用户退出后均可触发. 注意Session_end中不 能使用session对象,服务器对象, server.mappath().  所以只能用session.contents("username") 取代session("username"). 或者用Application对象或方法;

    例如想在session_end中使用Server.MapPath("users.xml"), 则应在Application_start 中定义Application("xmlPath") = Server.MapPath("users.xml"),然后在session_end中调用Application("XmlPath"),而不能直 接在session_end中使用诸如:Server.MapPath("users.xml"),

    他们的执行顺序是:1:Application_start  2: session_start ; 3:session_end: 4 Application_end

     

  • 相关阅读:
    单例模式
    spring boot 调度任务
    linux yum安装MySQL5.6
    day5模块学习--sys模块
    day5模块学习 -- os模块学习
    day5模块学习--random模块
    day5模块学习 -- time、datetime时间模块
    生成随机验证码的方法
    SQL中format()函数对应的格式
    day4作业小代码练习
  • 原文地址:https://www.cnblogs.com/BluceLee/p/4043927.html
Copyright © 2011-2022 走看看