Re: an advice neede for use of encodeURL method...

2005-10-05 Thread Paul Singleton
jonas skrebys wrote: Hi everyone, could anyone help me understand what I am doing wrong... I want to put a session tracking into my jsp page. I use response.encodeURL method to rewrite all url in my page : a href=% response.encodeURL(/appName/myJSP.jsp?parameter = + value); % also I

an advice neede for use of encodeURL method...

2005-09-22 Thread jonas skrebys
Hi everyone, could anyone help me understand what I am doing wrong... I want to put a session tracking into my jsp page. I use response.encodeURL method to rewrite all url in my page : a href=% response.encodeURL(/appName/myJSP.jsp?parameter = + value); % The problem is that I can not get

RE: an advice neede for use of encodeURL method...

2005-09-22 Thread Peter Crowther
From: jonas skrebys [mailto:[EMAIL PROTECTED] a href=% response.encodeURL [...] ^ I think you're missing an '=' here? Should be %=function();% to write the result of function to the output. Without that, the encoded URL will not be written to the output stream. View the source

RE: an advice neede for use of encodeURL method...

2005-09-22 Thread GB Developer
and minus the trailing ; -Original Message- From: Peter Crowther [mailto:[EMAIL PROTECTED] Sent: Thursday, September 22, 2005 11:01 AM To: Tomcat Users List Subject: RE: an advice neede for use of encodeURL method... From: jonas skrebys [mailto:[EMAIL PROTECTED] a href