About NetBeans(IDE)

triple s

Disciple
Guys, am developing a code for my mini project in JSP using Netbeans......... It is provided with tomcat server too....

So to compile and execute was not a tedious job for me...

But, we are not supposed to use an IDE..... So, Just tell me is there any way to execute it through IE???

I mean just by installing jdk and tomcat server and on my machine:huh:?????? So, please be fast........ Thank you in advance...........:)....
 
Install JDK & Tomcat, and move your JSP files to Tomcat's webroot folder. I don't see what has IDE got to do with execution of a program
 
what's the difference if you use an IDE or not? In the end don't you have to deploy the servlet/JSP files from a Server
 
Steps you should follow :-

1. Install tomcat5.x or higher server

2. put your jsp files in tomcat\webapps\<yourapplicationname>\

3. if you are using taglibs and servlets then go through the "Head First Servlet and Jsp"

4. otherwise start the IE and type this on you address bar

http://localhost:<your port no at time of tomcat installation. default 8080>/<yourappname>/<jsppagename>
 
Back
Top