14 Dec
2001
14 Dec
'01
7:45 p.m.
Florent Guillaume writes:
Vitor Varalonga <vpedrosa@ciberbit.pt> wrote:
Python >> container.REQUEST.RESPONSE.redirect("/abc/xpto?a=1&b=2&c=3")
Strictly speaking this is not correct. You should use
container.REQUEST.RESPONSE.redirect("/abc/xpto?a=1&b=2&c=3") I do not think that this is necessary or even allowed.
Inside HTML documents, you need to use "&" for "&" but here, you are not inside the SGML/HTML/XML world. You are in the HTTP worlds were "&" is the query string separator, not "&" Dieter