监测站点使用多少session和application的程序

application|session|程序|站点

<%@ Language=VBScript %>
<% Option Explicit %>
您的sessionID号是:<%=session.sessionid%><br>
<%
Response.Write "在你的程序中一共使用了 " & Session.Contents.Count & _
" 个Session变量<P>"
Dim strName, iLoop
For Each strName in Session.Contents
'判断一个Session变量是否为数组
If IsArray(Session(strName)) then
'如果是数组,那么罗列出所有的数组元素内容
For iLoop = LBound(Session(strName)) to UBound(Session(strName))
Response.Write strName & "(" & iLoop & ") - " & _
Session(strName)(iLoop) & "<BR>"
Next
Else
'如果不是数组,那么直接显示
Response.Write strName & " - " & Session.Contents(strName) & "<BR>"
End If
Next

Response.Write "在你的程序中一共使用了 " & application.Contents.Count & _
" 个application变量<P>"
%>
------------------------------
本站的检测结果:
在你的程序中一共使用了 3 个Session变量
在你的程序中一共使用了 4 个application变量

时间: 2024-10-25 02:47:23

监测站点使用多少session和application的程序的相关文章

监测你的站点使用多少session和application的程序

application|session|程序|站点 <%@ Language=VBScript %><% Option Explicit %>您的sessionID号是:<%=session.sessionid%><br><% Response.Write "在你的程序中一共使用了 " & Session.Contents.Count & _" 个Session变量<P>"Dim st

Cookie,Session,Application封装

再把其它的操作,比如Cookie,Session,Application封装 CookieState类: <% Class CookieState Private CurrentKey Public Default Property Get Contents(ByVal Value) Contents = Values(Value) End Property Public Property Let Expires(ByVal Value) Response.Cookies(CurrentKey)

jsp内置对象入门(2) 【02】session、application

我们继续来学习,上一篇文章中说到了request属性,那么既要想客户端和服务端都都能实现跳转的话,就用到了session. 第三种:session属性 我们接着修改一下上一篇文章中的代码来对比一下: Session_01.jsp <%@ page language="java" contentType="text/html" pageEncoding="utf-8" %> <html> <head> <t

[Asp.Net]状态管理(Session、Application、Cache、Cookie 、Viewstate、隐藏域 、查询字符串)

原文:[Asp.Net]状态管理(Session.Application.Cache.Cookie .Viewstate.隐藏域 .查询字符串) Session:  1. 客户在服务器上第一次打开Asp.Net页面时,会话就开始了.当客户在20分钟之内没有访问服务器,会话结束,销毁session.(当然也可以在Web.config中设置缓存时间)可以在Global.aspx的Session_Start()事件处理程序中,可以初始化会话变量.在下面的实例中,名为mydata的会话状态被初始化为0:

应用-为什么在开发中大部分的时候都在用session而Application基本上都不去使用?

问题描述 为什么在开发中大部分的时候都在用session而Application基本上都不去使用? 为什么在开发中大部分的时候都在用session而Application基本上都不去使用? 为什么在开发中大部分的时候都在用session而Application基本上都不去使用? 为什么在开发中大部分的时候都在用session而Application基本上都不去使用? 解决方案 无满意答案,关闭问题. 解决方案二: session兼程会话,从字面意思就可以看出,只是针对单个会话管用,比如一个用户的

Webservice中使用Session、Application

原文:Webservice中使用Session.Application在Asp.Net 2.0里,已经能够在WebMethod里使用 Session . Application 这种服务器变量了. 一.Session     [WebMethod(EnableSession = true)]    public string Hello()     {        return "Hello," + Session["user"];    }    [WebMet

取不到session和application里的值

问题描述 取不到session和application里的值 项目运行成功,页面也可以跳转,但是在登录页面输入用户名和密码以后执行action取不到session和application里的值,,正确的话应该用户名存入session和application里才对 解决方案 把你多struts.xml也贴出来啊!!! 解决方案二: 看下struts的配置文件,action是怎么定向的

asp.net session 简单测试应用程序

asp教程.net session 简单测试应用程序 <%@ page language="c#" autoeventwireup="true"  codefile="default.aspx.cs" inherits="_default" %> <!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "htt

application 清空程序出现很卡的问题是什么原因

问题描述 application 清空程序出现很卡的问题是什么原因 application 清空后,程序出现很卡的问题是什么原因 ,怎么解决,里面存的是bitmap集合 clear后很卡 解决方案 必要的缓存被清理掉了吧,然后需要重新生成或下载造成运行卡顿. 解决方案二: 缓存清理掉了,当你在此运行时候这些Bitmap位图都要 重新加载,肯定会卡