/ Published in: Java
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<pre> <% for (Enumeration<String> enumeration = request.getAttributeNames(); enumeration.hasMoreElements();) { out.println(attributeName + " -> " + attribute.getClass().getName() + ":" + attribute.toString()); } %> </pre>