S334 Render HTTP Query Data
Use the S334 Tag to return the value of a parameter in the HTTP request.
Application
Platform
Can You Add This S-Tag in the Luminate OnlineContent Editor?
No, add the S-Tag code to the HTML using the Plain Text Editor.
Can You Add This S-Tag in the Luminate CMSContent Editor?
No, add the S-Tag code to the HTML using the Plain Text Editor.
Format
- Standard
[[S334:url_param_name]] - XML
<convio:session name="334" param="url_param_name"/>
Parameters
- url_param_name - The name of a parameter in the URL. Only parameters that exist in the URL are allowed. Post parameters will not be displayed.
Sample Code
For example, if you add the S334 Tag to a URL for the parameter "foo" (written as [[S334:foo]]), the output of the page would vary as follows, depending on the URL used to access the home page.
|
URL |
Output |
|
http://homepage.com/site/PageServer |
Empty string |
|
http://homepage.com/site/PageServer?foo=bar |
bar |
|
http://homepage.com/site/PageServer?pg=homepage&foo=bar |
bar |
|
http://homepage.com/site/PageServer?foo=fish |
fish |