Hi,
Further investigation of the problem I was having with request
parameters not seeming to be passed on has lead me to discover the
following:
If you set a parameter using the addParameter method, you can
retrieve it again using getParameter, but it doesn't appear on the query
string (fair enough - they'll be being POSTed instead)
If you set a list of parameters using the setURL method, you can get
them back using getQueryString, BUT, not using getParameter. This I find a
little strange, and means that I have to set the parameter twice - once in
the query string (that I use as a key for my cache) and once using
setParameter so I can actually use it!
Is this the correct behaviour? Or am I missing something?
Catherine