Hi! My template has a link that passes a parameter to another cf template. The value of the parameter happens to be AT&T. The ampersand causes a problem, as a new parameter is expected. In the template, it comes across at AT. I tried the special ampersand construct of ampersand followed by amp;, but it still didn't work. I also tried some creative placing of quotes, etc., to no avail. Does anyone have any ideas?
Here is a code fragment:
Thanks!
Here is a code fragment:
Code:
<cfoutput query="getit">
<tr><td><a href="getinfo.cfm">state_abbr#</a></td>
<td><a href="getvendor.cfm">#vendor#</a></td>
<td><a href="gethardware.cfm?hardware_name=#hardware#">#hardware#</a></td>
<td>#software#</td>
</tr>
</cfoutput>
Thanks!
