一聚教程网:一个值得你收藏的教程网站

热门教程

Application 简介绍与计数器实例

时间:2022-06-25 05:34:33 编辑:袖梨 来源:一聚教程网

application 简介绍与计数器实例

event-handling方法描述
  
  application_start()发生当应用程序的开始
  这是他第一次收到任何用户的要求。
  
  application_end()发生当应用程序正在关闭的时候,通常而言,是因为网络服务器正在重新启动。
  
  application_beginrequest()中,发生在每个请求的应用得到的,就在这个页面代码被执行。
  
  application_endrequest()


简单存值实例

<%@ page language="vb" %>


  


      <asp教程:label id="lbloutput" runat="server"/>
     
  

利用application 做简单计数器

<%@ page language="c#" %>
"http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">

http://www.w3.org/1999/xhtml" >

    show session count


   


   

    total application sessions:
            id="lblsessioncount"
        runat="server" />

   


   


锁定application

<%@ page language="c#" autoeventwireup="true"  codefile="default.aspx.cs" inherits="_default" %>

http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">

http://www.w3.org/1999/xhtml" >

    untitled page


   


   

      the page has been requested
     
      times!
   

   


file: default.aspx.cs

using system;
using system.data;
using system.configuration;
using system.web;
using system.web.security;
using system.web.ui;
using system.web.ui.webcontrols;
using system.web.ui.webcontrols.webparts;
using system.web.ui.htmlcontrols;

public partial class _default : system.web.ui.page
{
    protected void page_load(object sender, eventargs e)
    {
        if (application["pagecounter"] != null &&
            (int)application["pagecounter"] >= 10)
        {
            application.remove("pagecounter");
        }

        if (application["pagecounter"] == null)
        {
            application["pagecounter"] = 1;
        }
        else
        {
            application.lock();
            application["pagecounter"] =
                (int)application["pagecounter"] + 1;
            application.unlock();
        }
        mylabel.text = convert.tostring(application["pagecounter"]);
    }
}

热门栏目