i have a
jsp at location c:\tomcat5.5\webapps\Myplots\src\jsp\Welcome.jsp Welcome.jsp
[code]
<link rel="STYLESHEET" type="text/css" href="../css/PlotManagement.css">
</STYLE>
</HEAD>
<%
response.setHeader("Cache-Control","no-store"); //HTTP 1.1
response.setHeader("Pragma","no-cache"); //HTTP 1.0
response.setDateHeader ("Expires", 0); //prevents caching at
%>
<div ID=maindiv>
<%@ include file="header.jsp" %>
and my PlotManagement.css is at c:\Tomcat5.5\webapps\Myplots\src\css\PlotManagement.css
i configured the jsp in web.xml as
<
servlet>
<servlet-name>second</servlet-name>
<jsp-file>/src/jsp/Welcome.jsp</jsp-file>
</servlet>
<servlet-mapping>
<servlet-name>second</servlet-name>
<url-pattern>/welcomepage</url-pattern>
</servlet-mapping>
The raw data present in my jsp is given as output with out formatting it which is done by including the .css files... my jsp do not includes the css files but when i remove the configuration from the web.xml it shows output by including the .css file i tried by modifying the path of the included file but it still does not show me the formatted output produced using .css file...
please help me with this..