hemanth.balaji 0 Newbie Poster

I have a href in my JSP....

say page1.jsp
---------------

<a href="<%=response.encodeURL(FRONT + "/RemoveReport?reportTemplateName=Test123#&'")%>">

In my second JSP
------------------

I have

String reportTemplateName1 = request.getParameter("reportTemplateName");

Now what is getting stored in reportTemplateName1 when i an printing is Test123.

I am also trying to pass Test123#&amp;' and then also its not working... Giving some other string ... How do i get the whole "Test123#&'" on to the second JSP Page...