I need to build a URL which contains, as one of it's parameters on the query string, yet another full URL with parameters. Something like this:
/url1?p1=a&p2=/url2?pp1=a&pp2=b&p3=b I know its confusing (and wrong syntax), however, the intent is for /url1 to have the following parameters: p1=a p2=/url2?pp1=a&pp2=b p3=b This way, when I execute request.getParameter("p2") the result should be: /url2?pp1=a&pp2=b Is there a way to do this in HTML? And if there is, are there any utilities in Struts/Taglib/Jakarta/Anywhere that can help me build such a beast? Thanks. -AP_ www: http://www.alexparansky.com -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>