Sha256: e4c35736015984cd857527fc1b03e091f12d349be4bd6d8ed69907b891d7ed4d
Contents?: true
Size: 576 Bytes
Versions: 8
Compression:
Stored size: 576 Bytes
Contents
<html><head> <%@ page import="java.util.Enumeration" %> </head><body> <h1>JSP Dump</h1> <table border="1"> <tr><th>Request URI:</th><td><%= request.getRequestURI() %></td></tr> <tr><th>ServletPath:</th><td><%= request.getServletPath() %></td></tr> <tr><th>PathInfo:</th><td><%= request.getPathInfo() %></td></tr> <% Enumeration e =request.getParameterNames(); while(e.hasMoreElements()) { String name = (String)e.nextElement(); %> <tr> <th>getParameter("<%= name %>")</th> <td><%= request.getParameter(name) %></td></tr> <% } %> </table> </body></html>
Version data entries
8 entries across 4 versions & 1 rubygems