Add simple test iteration HttpRequest.Session to frame.html

simple2
Harald Wolff 2019-02-26 22:01:13 +01:00
parent b7448e0766
commit 7dffea6bf5
1 changed files with 13 additions and 5 deletions

View File

@ -9,14 +9,22 @@
<div>
<h3>request Headers:</h3>
<table>
<%iterate name request.RequestHeaderNames%>
<table>
<%iterate name request.RequestHeaderNames%>
<tr>
<td><i><%=name%>:</i></td>
<td><%=request.GetRequestHeader(name)%></td>
</tr>
<%end%>
</table>
</tr> <%end%>
</table>
<h3>session variables (SID: <%=request.Session.SessionID%>)
<table>
<%iterate name request.Session.ElementNames%>
<tr>
<td><i><%=name%>:</i></td>
<td><%=request.Session[name]%></td>
</tr>
<%end%>
</table>
</div>
</body>
</html>