hi

my web.xml :

Code:
<servlet>
<servlet-name>test</servlet-name>
<jsp-file>/abc/a.jsp</jsp-file>
<init-param>
<param-name>Id</param-name>
<param-value>a.3</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>test</servlet-name>
<url-pattern>/test</url-pattern>
</servlet-mapping>
<session-config>

but the problem is......
it opens the a.jsp page when i say..... /test
but does not open the a.jsp with the parameter Id=a.3

and also it does not load the CSS file when i give /nav. It display the content without the CSS.

how to achieve this?