关于页面框架include或iframe
初来乍到,问题有没说清楚的地方,大家回帖,在线补充~
第一次做页面框架,
现在要把页面分成4部分,
head.jsp, right.jsp, foot.jsp, left.jsp
以及main.jsp 用<jsp:include> 将四个页面包含进来....(一开始用得iframe,听说对搜索引擎不好,所以就换了)
我是这么做的,先不考虑布局
<jsp:include page="head.action" flush="true"/>
<jsp:include page="right.action" flush="true"/>
<jsp:include page="foot.action" flush="true"/>
<jsp:include page="left.action" flush="true"/>
这四个页面里都有动态数据,所以加载的时候的时候 要将数据全部读出来
但是页面报错:
The requested resource (/WBManager/head.action) is not available
不知道什么原因......
web.xml,加入了下面代码,貌似也不好使
<filter-name>hibernateFilter</filter-name>
<url-pattern>*.action</url-pattern>
<dispatcher>REQUEST</dispatcher>
<dispatcher>INCLUDE</dispatcher>
<dispatcher>FORWARD</dispatcher>
呵呵,咱知道问题很简单,但是咱google了半天没解决~! 特意来求教
还有大家觉得这样的布局好吗?有什么其它的意见吗?
------解决方案--------------------
如需要阅读该回复,请登录或注册CSDN!