Yes you don't need any processing in your struts-config file.
The application path seems to miss, no ? <a href = "/MyWebappName/MyJSPPage.jsp">Click Here</a>
but you should use struts tag to avoid path issue : <html:rewrite page="/MyJSPPage.jsp"/>
or if the page is on another server/application, you should put the complete url (http://MyServerName:8080/MyJSPPAge.jsp)
Bj
Priya Jotwani a écrit :
Hi,
I want to build my application on existing Struts code. I have a main page where I just want to include a hyperlink. Clicking on the hyperlink should take me to one JSP Page (but since the data fetching logic is still under process, its only the HTML content in MYJSPPage) But this doesn't works. Since I am not doing any processing, I don't think I should be making an entry in my Struts-Config(for the time being..just to see if my page loads when I click on the link on the main page). I have only made the changes in my Main JSP to include a href tag .
I have included the following line in my Main Page
<a href = "/MyJSPPage.jsp">Click Here</a>
What am I missing ?
TIA, Priya
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]