|
-
July 17th, 2008, 02:29 AM
#1
servlet mapping problem
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?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|