|
用于实时调试打印用:
- Function Print_Session()
- Dim strName, iLoop
- For Each strName in Session.Contents
-
- 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
- End Function
复制代码
|
|