Getting parameters from URLs

If you want to get the value of URL parameters other than the root objects and/or check to see if they have a value use the syntax parameters.get("paramnamehere"). For instance, to check for the xyz parameter and export it, execute the following code statement.

<%= (parameters.get("xyz") == null)?"NO VALUE!":parameters.get("xyz") %>