<%@LANGUAGE="VBSCRIPT"%> <% '===================================================== ' Display Internal Package Version Data ' Used for development and debug ' Not availavle in production system '===================================================== %> <% Option explicit ' Good idea to set when using redirect Response.Expires = 0 ' always load the page, dont store %> <% '------------ ACCESS CONTROL ------------------ %> <% '------------ Variable Definition ------------- Dim rsQry '------------ Constants Declaration ----------- '------------ Variable Init ------------------- '---------------------------------------------- %> <%=Title(Request("rtag_id"))%>
<%Call RenderActionBar(parRtag_id,parPv_id)%>
<%Call RenderStatus(parRtag_id,parPv_id)%>  
 
tab-left-margin <%Call Generate_Tab_Menu ( TABarray1, "Debug", "orange" )%>
 
 
<% Dim strName Response.Write "

Form Variables" For Each strName in request.form Response.Write "
" & strName & ": " & request.form(strName) Next Response.Write "
String Variables" For Each strName in request.querystring Response.Write "
" & strName & ": " & request.querystring(strName) Next Response.Write "
pkgInfoHash Variables" For Each strName in pkgInfoHash.keys Response.Write "
" & strName & ": " & pkgInfoHash.item(strName) Next Response.Write "
" %>