Current Request Parameters

 

+
Search Tips   |   Advanced Search

 

Use current Request Parameters to inspect data contained within the query string (the variables and values that appear after a question mark on a URL). For example, in the URL...

http://hostname/page.jsp?var1=rob&var2=expert

...the request parameters are var1 and var2. Typically these are passed by GET and POST methods associated with forms. You must know the name of the request parameter that is passed by the page to use it in a rule.

Given the following <jsp:forward> command:

<jsp:forward page="/servlet/login"> <jsp:param name="user" value="rob" /> </jsp:forward>

...an example rule condition constructed to evaluate this example might be:

when current Request Parameter.user is equal to rob

Only data types Text and List are supported.