WEB-INF上jsp使用frameset的注意事项
WEB-INF下jsp使用frameset的注意事项
只能在src中通过servlet从定向到WEB-INF下的jsp来形成。
return "top"
直接返回top.jsp页面
<frameset rows="61,*,24" cols="*" framespacing="0" frameborder="no" border="0"> <frame src="${webapp}/frameset.do?tag=top" name="topFrame" scrolling="false" noresize="noresize" id="topFrame" /> <frame src="${webapp}/frameset.do?tag=center" name="mainFrame" id="mainFrame" /> <frame src="${webapp}/frameset.do?tag=down" name="bottomFrame" scrolling="false" noresize="noresize" id="bottomFrame" /> </frameset> <noframes>
只能在src中通过servlet从定向到WEB-INF下的jsp来形成。
1 楼
zuibunan
2011-07-07
哈,谢啦!
2 楼
oo_key
2012-04-07
你好,我想问这句话是什么意思?我懂了才能继续照着你的方法写。
src="${webapp}/frameset.do?tag=top"
src="${webapp}/frameset.do?tag=top"
3 楼
hongchangfirst
2012-05-08
那相应的后台代码怎么写呢?上边只给出了前台代码。
4 楼
beming
2012-05-10
hongchangfirst 写道
那相应的后台代码怎么写呢?上边只给出了前台代码。
return "top"
直接返回top.jsp页面