Hi .. tricky thing...
I have a URL string like
register.jsp?cust=100
and now i want to send it to another jsp and this jsp reads out the url from request.
action.jsp?URL=<%= encode("register.jsp?cust=100") %>
and now i want to send this string away with javascript (beause of forms) ...
parent.main.location = "action.jsp?URL=<encodedURL>
but action cannot read out the URL parameter from request, because javscript "re-encoded" it again.
Does sb have an idea !?
Thanx a lot .... Markus