html - How to reference a jsp in a different folder -
i organized jsp's in project separate folders. need change src 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> </td>
thanks in advance
just replace
src="menu1.jsp?page=home"
to
src="new/location/menu1.jsp?page=home"
Comments
Post a Comment