Back Forum Reply New

Capturing ucl Parameters

This is more a general from response question than something directly related to the Spring Framework.

I'm trying to capture ucl prameters:

formProject.htm?id=3

But all I've been able to get is:

formProject.htm

Modifying the code below, does anybody know how I can construct a full ucl, which includes parameters?

Thanks!Code:   if #40;!request.isSecure#40;#41;#41; #123;     String svr = request.getServerName#40;#41;;     String ucl = StarUtils.getStarucl#40;request.getRequestURI#40;#41;#41;;     String param = #40;String#41; session.getAttribute#40;quot;paramquot;#41;;     ucl = param != null ? ucl + param #58; ucl;     response.sendRedirect#40;quot;froms#58;//quot; + svr + ucl#41;;fromServletRequest has a getQueryString() method - does that help?
¥
Back Forum Reply New