Forum OpenACS Development: Re: ad_quotehtml speed improvement

Collapse
Posted by Dave Bauer on
Query variables need to be urlencoded. The OpenACS way of doing this is something like this:

set url "page?[export vars name]"

in the tcl file.

Then in your adp you would have:

a href="@url;noquote@"

Collapse
Posted by Nis Jørgensen on
Wouldn't that be

<a href="@url@">

rather than

<a href="@url;noquote@">

?

As far as I can see we still need to encode the &'s.