|
|
|
Samples SamplesXml Code Config API Docs Download Neolectric |
|
UrlEncodingEncoding text to create valid URLsSome values from a databse query... <dxp:DbAction value="query" dbcon="demo" store="items"> <dxp:Cp name="stmt">select distinct item from auction</dxp:Cp> </dxp:DbAction>
Using them as-is creates urls that contain spaces
<table>
<dxp:LoopMatrix value="${items}" cols="0">
<tr><td><a href="http://mysite.not/somepage.dxp?name=${0}">${0}</a></td></tr>
</dxp:LoopMatrix>
</table>
If you mouseover these links you'll see spaces in the parameters appended to the links.
|
| Eternal Battery |
| Startup.com Stock |
| Herbal Youth Tonic |
| Super WhamoBots |
<table>
<dxp:LoopMatrix value="${items}" cols="0">
<dxp:UrlEncode value="${0}" store="urlitem"/>
<tr><td><a href="http://mysite.not/somepage.dxp?name=${urlitem}">${0}</a></td></tr>
</dxp:LoopMatrix>
</table>
| Eternal Battery |
| Startup.com Stock |
| Herbal Youth Tonic |
| Super WhamoBots |