Click to See Complete Forum and Search --> : not sure why href have problem


everytime
June 7th, 2005, 02:29 AM
hi there , i have put the awb_del_role.jsp into a package in eclipse, and access it from the main project folder, by viewing in eclipse the links can work. But when i copy this project and paste it in tomcat webapps folder and run it , i cant access that page , they say that the page in unaccessable

i used


a href="WEB-INF/src/org/rwb/role/awb_del_role.jsp


what seems to be the problem here... ??

Dr. Script
June 7th, 2005, 03:40 PM
<a href="... doesn't do anything. I'm not sure what you were looking for, but you'd need: <a href="..."> to at least complete the tag. W3C Standards say it should also be closed like </a> if necessary, but that's just basic. I'm not exactly sure what you are after.

everytime
June 7th, 2005, 08:46 PM
hi there, yup i have those tags in there just that i did not paste the whole segment in ...

sorry about my weak post, i will try to clear it up ...


<td>
<a href="WEB-INF/src/org/poc/rwb/role/awb_del_role.jsp">Delete Role</a></td>


the above code is a from a awb_menu.jsp , on clicking will link to awb_del_role.jsp but that awb_del_role.jsp is being held inside a package(thats what it is called in eclipse, package name: org.poc.rwb.role)

so after saving the files , i used tomcat to run it but the link doesnt display out, in fact it says that the requested resouce is not available.

but as some of us know, my eclipse has a preview function , the link works in there but not when using tomcat to run it in IE ...

so whats seems to be the problem ??