I have a jsp which uses all the jstl tags.
I have this value set in the variable "TimeOutURL"
<c:set var="TimeOutURL" value="/abc/availability.d
o?isSearch
=true&prop
ertyCode="
sss" scope="request" />
i pass the variable "TimeOutURL" as a query string when soem condition mets
<html:link href="/abc/continue.do?ses
stimeoutUR
I=${TimeOu
tURL}">
when clicked on that link, the struts calls the corresponding action and inside the struts method. I retrive the timeOutURL.
String TimeoutURI = request.getParameter("time
outURI");
System.out.println("Timeou
tURI " +TimeoutURI );
// it prints as
/abc/availability.do?isSea
rch=true
where as I am expecting the value of it as:
/abc/availability.do?isSea
rch=true &propertyCode="sss"
Any help is greatly appreciated