|
|
|
Samples SamplesXml Code Config API Docs Download Neolectric |
|
Request ParametersRequest parameters are name/value pairs that are stored in a client request.Initial parameters are sent by a client browser and are generally char Strings. If you want to send a value for "firstname" you can post it here You can display request parameters on a dxp page using parameter marker${firstname} Bart or using a dxp:Rp tag <dxp:Rp value="${firstname}"/> Bart Once the page begins to run, some dxp tags can store Objects in the request.<dxp:Rp value="Homer" store="firstname"/>${firstname} Homer Rp can assign an alternate value if the intended one is not present
<dxp:Rp value="${beer}" alt="Duff" store="item"/>
${item} Duff
There are some characters like < and > that are not legal to assign to an attribute.
|