Hi,
When using the following construct:
<pre>
&lt;fetch url="http://page1.html?page=1&param2=2"/&gt;
</pre>
I get an error:
ParseException: The reference to entity "param2" must
end with the ';' delimiter.
When using the querystring attribute of the fetch
command like this:
<pre>
&lt;definePage name="p1" url="http://page1.html"/&gt;
&lt;fetch page="p1"
querystring="page=1&param2=2"/&gt;
</pre>
I get a little different error:
Error on HTTP request: 500 Internal Error
[http://page1.html?page=1?param2=2]
(notice the second question mark)
Is it possible to use querystrings with more than one
parameter at all ?
/Gedde