Using the request Object
From LongJump Support Wiki
Revision as of 01:16, 9 January 2013 by imported>Aeric
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"); %>