PDA

View Full Version : Cegonsoft JSP program | Get training in coimbatore



petersmith
04-07-2012, 05:33 AM
Cegonsoft JSP program | Get training in coimbatore
Cegonsoft is a Bangalore based IT Training and Software Development center with an exclusive expertise in the area of HR consultancy. Cegon is a Dutch word meaning Never Ending, which implies that our service to you is unflinching.

JavaServer Pages (JSP)

JavaServer Pages (JSP) is a Java technology that helps software developers serve dynamically generated web pages based on HTML, XML, or other document types. Released in 1999 as Sun's answer to ASP and PHP, JSP was designed to address the perception that the Java programming environment didn't provide developers with enough support for the Web.

To deploy and run, the Apache Tomcat Server is used. It is an open source servlet container developed by the Apache Software Foundation (ASF). Tomcat implements the Java Servlet and the JavaServer Pages (JSP) specifications from Sun Microsystems, and provides a "pure Java" HTTP web server environment for Java code to run.

Example:

<%@ page errorPage="myerror.jsp" %>
<%@ page import="com.foo.bar" %>

<html>
<head>
<%! int serverInstanceVariable = 1;%>

<% int localStackBasedVariable = 1; %>
<table>
<tr><td><%= toStringOrBlank( "expanded inline data " + 1 ) %></td></tr>