dear all, i have created one hyperlink, and by clicking on that i am redirecting the page to another JSP, but i am not getting the correct URL that i am passing, URL is appended with another string and the page is not redirected,
please anybody have any idea about that, help me out
<td align='<%=lstrColAlign%>' class="<%=tdclass%> Label2"
style="<%=rb.getDataStyleString(rvo,data)%>">
<a href="#" onclick="JavaScript:window.open( '<%=columnUrl%>','newwindow','top=0, left=0,
scrollbars=yes,status=1,resizable=yes,height= (screen.availHeight - 10),
width= (screen.availWidth-5)')"> <%=rb.getDataValue(data)%></a>
</font></td>
where i should get
...Project1-context-root/servlet/Reports.controller.ReportController?ActionFlag=get.............
but instead of that i am getting
...Project1-context-root/servlet/servlet/Reports.controller.ReportController?ActionFlag=get.....
so, extra word servlet/
is appended