首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

WEB-INF上jsp使用frameset的注意事项

2012-08-27 
WEB-INF下jsp使用frameset的注意事项frameset rows61,*,24 cols* framespacing0 framebordern

WEB-INF下jsp使用frameset的注意事项

<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来形成。
2 楼 oo_key 2012-04-07   你好,我想问这句话是什么意思?我懂了才能继续照着你的方法写。

src="${webapp}/frameset.do?tag=top" 3 楼 hongchangfirst 2012-05-08   那相应的后台代码怎么写呢?上边只给出了前台代码。 4 楼 beming 2012-05-10   hongchangfirst 写道那相应的后台代码怎么写呢?上边只给出了前台代码。

return "top"
直接返回top.jsp页面

热点排行