Display server variables
843836Apr 28 2004 — edited Apr 29 2004I am new to JSP. I used this code in asp to display all server side variables. how can I do the same thing in JSP?
For Each var in Request.ServerVariables
Response.Write var & " : " & Request.ServerVariables(var) & "<br>" & vbCrLf
Next