Using the request Object
From LongJump Support Wiki
Revision as of 02:20, 18 February 2012 by imported>Aeric (Created page with "To obtain record identifiers from the <tt>request</tt> object: :<syntaxhighlight lang="java" enclose="div"> <% String object_id = request.getParameter("object_id"); String re…")
To obtain record identifiers from the request object:
<% String object_id = request.getParameter("object_id"); String record_id = request.getParameter("record_id"); %>
To list all of the parameters available in the request object and display their values:
<% String[] params = request.getParameterValues(); for (int i=0; i<params.length; i++) { String paramName = params[i]; String paramValue = request.getParameter( paramName ); } %>