How to reference a jsp in a different folder
I just organized the jsp's in my project into separate folders. Now I need to change the src for menu1.jsp
<td width="16%" valign="top"><iframe id="ifa"
src="menu1.jsp?page=home" marginwidth="0" marginheight="0"
scrolling="no" width="190" height="450" frameborder="0"></iframe>
开发者_JAVA百科 </td>
Thanks in advance
Did you try ../dirname/menu1.jsp as src?
just replace
src="menu1.jsp?page=home"
to
src="new/location/menu1.jsp?page=home"
精彩评论