when i run the following jsp in my tomcat...
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body> Before:cp=<%=System.getProperty("java.class.path")%>
</body>
</html>
i get this output...
Before:cp=C:\apache-tomcat-6.0.24\bin\bootstrap.jar;C:\Program Files\Java\jdk1.6.0_19\lib\tools.jar
How can i make C:\Myfolder\project appear here...?How do i set this folder to my tomcat6 class path..
Kaddy