Difference between revisions of "Using the request Object"
From LongJump Support Wiki
imported>Aeric |
imported>Aeric |
||
Line 1: | Line 1: | ||
'''To list all of the parameters available in the <tt>request</tt> object | '''To list all of the parameters available in the <tt>request</tt> object get their values:''' | ||
:<syntaxhighlight lang="java" enclose="div"> | :<syntaxhighlight lang="java" enclose="div"> | ||
<% | <% |
Revision as of 01:16, 9 January 2013
To list all of the parameters available in the request object get their values:
<% String[] params = request.getParameterValues(); for (int i=0; i<params.length; i++) { String paramName = params[i]; String paramValue = request.getParameter( paramName ); } %>
To obtain a record identifier from the request object:
<% String object_id = request.getParameter("object_id"); String record_id = request.getParameter("record_id"); %>