View Server アプリケーション/セッション変数ツール
著者:Eve Cole
更新時間:2009-06-24 17:04:58
< %@LANGUAGE="javascript " CODEPAGE="936"%>
<%
Response.Expires = 0;
Response.Buffer = true;
var tPageStartTime = 新しい日付();
%>
<html>
<頭>
<title>网站-アプリケーション变量-セッション变量</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<スタイルタイプ=テキスト/css>
本文、td {FONT-SIZE: 10pt; FONT-FAMILY: "Arial"、"Helvetica"、"sans-serif" }
.Table1 { BORDER-RIGHT: #FF9900 1px ソリッド;ボーダートップ: #FF9900 1px ソリッド;フォント サイズ: 9pt;ボーダー左: #FF9900 1px ソリッド。ボーダーボトム: #FF9900 1px ソリッド }
.Table2 { 背景色: #FF9900 }
.TR1 { 背景色:#FF9955 }
.TD1 { BORDER-RIGHT: #FEDFB3 1px ソリッド;ボーダートップ: #FEDFB3 1px ソリッド。ボーダー左: #FEDFB3 1px ソリッド。色:#ff9900; BORDER-BOTTOM: #FEDFB3 1px ソリッド。背景色: #FEDFB3}
.TD2 {背景色: #FEEED6;パディング:7px;}
</スタイル>
<table width="750" border="0" cellpadding="3" cellpacing="1" class="Table1">
<tr>
<td class="TR1">
<table width="100%" border="0" cellpacing="0" cellpadding="0">
<tr>
<td><font color="#FFFFFF" face="Verdana, Arial, Helvetica, sans-serif"> <strong>服务器アプリケーション变量 [共 <%=Application.Contents.Count%> 个]
<script>showTools();</script></strong></font></td>
<td align="right"> </td>
</tr>
</table></td>
</tr>
<tr>
<td>
<table width="100%" border="0" cellpadding="3" cellpacing="1" class="Table2">
<tr>
<td width="35%" class="TD1"> 变量</td>
<td width="65%" class="TD1"> 值</td>
</tr>
<%
var iCount = 0;
var sVarType = "";
var oApplication = new Enumerator(Application.Contents);
var oApp;
for(;!oApplication.atEnd();oApplication.moveNext()){
oApp = oApplication.item();
sVarType = typeof(Application.Contents(oApp));
++iカウント;
%>
<tr>
<td align="left" valign="middle" class="TD2"><b><%=oApp%></b><br><i 無効>[<%if(sVarType=="unknown") {Response.Write("Array");}else{Response.Write(sVarType);}%>]</i></td>
<td valign="middle" class="TD2">
<%
試す{
if(sVarType=="不明"){
var oTmp = new VBArray(Application.Contents(oApp));
Response.Write(Server.HTMLEncode(oTmp.toArray()));
}else Response.Write(Server.HTMLEncode(Application.Contents(oApp)));
}キャッチ(e){
Response.Write("<i 無効>[不明]</i>");
}
%>
</td>
</tr>
<%
}
if(!iCount){
%>
<tr>
<td align="left" valign="middle" class="TD2"colspan="2">没有アプリケーション变量</td>
</tr>
<%
}
%>
</table></td>
</tr>
<tr>
<td height="5" class="TR1" Colspan="2"></td>
</tr>
</テーブル>
<br>
<table width="750" border="0" cellpadding="3" cellpacing="1" class="Table1">
<tr>
<td class="TR1">
<table width="100%" border="0" cellpacing="0" cellpadding="0">
<tr>
<td><font color="#FFFFFF" face="Verdana, Arial, Helvetica, sans-serif"> <strong>服务器Session变量 [共 <%=Session.Contents.Count%> 个]
<script>showTools();</script></strong></font></td>
<td align="right">現在の会话编号: <%=Session.SessionID%> </td>
</tr>
</table></td>
</tr>
<tr>
<td>
<table width="100%" border="0" cellpadding="3" cellpacing="1" class="Table2">
<tr>
<td width="30%" class="TD1"> 变量</td>
<td width="70%" class="TD1"> 值</td>
</tr>
<%
var iCount = 0;
var sVarType = "";
var oSession = new Enumerator(Session.Contents);
var oSes;
for(;!oSession.atEnd();oSession.moveNext()){
oSes = oSession.item();
sVarType = typeof(Session.Contents(oSes));
++iカウント;
%>
<tr>
<td align="left" valign="middle" class="TD2"><b><%=oSes%></b><br><i 無効>[<%if(sVarType=="unknown") {Response.Write("Array");}else{Response.Write(sVarType);}%>]</i></td>
<td valign="middle" class="TD2">
<%
試す{
if(sVarType=="不明"){
var oTmp = new VBArray(Session.Contents(oSes));
Response.Write(Server.HTMLEncode(oTmp.toArray()));
}else Response.Write(Server.HTMLEncode(Session.Contents(oSes)));
}catch(e){ Response.Write("<i 無効>[不明]</i>");
}
%>
</td>
</tr>
<%
}
if(!iCount){
%>
<tr>
<td align="left" valign="middle" class="TD2"colspan="2">没セッション变量</td>
</tr>
<%
}
%>
</table></td>
</tr>
<tr>
<td height="5" class="TR1" Colspan="2"></td>
</tr>
</テーブル>
<% tPageEndTime = 新しい日付(); %>
<center> <%="<br><br>页面実行時間间:约 <font color='#990000'><b>"+((tPageEndTime-tPageStartTime))+"</b></font> 秒"%></center>
</body></html>