Creating First Dynamic Web Page
Creating a dynamic Web project using Eclipse Launch Eclipse and Switch to Java EE perspective. Right click under the project explorer and select Dynamic Web Project as shown in the figure Name the project as HelloWorld . Keep default values for all the fields and select Finish . Adding a JSP to the project Right-click on the project HelloWorld and create a new JSP as shown in the figure. Give the name as hello.jsp and select Next . Select Finish on the next screen Modify the code of hello.jsp as follows: hello.jsp <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Hello World</title>...