【发布时间】:2011-05-03 22:30:45
【问题描述】:
当我包含
标头内的图像无法访问,css文件也没有正确链接!!,这是我的文件的层次结构
在 StudentIndex.jsp 中我是这样制作的
<link type="text/css" rel="stylesheet" href="../css/StudentStyle.css"/>
<%@include file="../WEB-INF/jspf/Header.jspf" %>
并在 Header.jspf 中
<link href="../css/Style.css" type="text/css" rel="stylesheet"/>
<img src="../images/iuglogo.gif" alt="IUG logo" id="IUGlogoStyle"/>
编辑
当我运行 StudentIndex.jsp 时,所有文件都运行正常
http://localhost:8080/OnlineQuerySystemNew/Student/StudentIndex.jsp
但是当请求从 servlet 转发到 StudentIndex 页面时,没有附加图像和 css 文件
http://localhost:8080/OnlineQuerySystemNew/StudentManagementServlet?param=activationOptions
【问题讨论】: