Hi,
I have a page where I include another page passed via url
Url is something like
http://www.daniweb.com/newthread.jsp?page=24
and I get the variable as
String thePage = request.getParameter("page") ;
Now I want to include it in my page and the code below doesn't work. I have googled and I cannot understand why I cannot get relevant result. Please help
<jsp:include page=<%=thePage%> flush="true"></jsp:include>