Main Menu
Home
Java Tutorials
Book Reviews
Java SE Tips
Java ME Tips
Java EE Tips
Other API Tips
Java Applications
Java Libraries
Java Games
Java Network
Java Forums
Java Blog
Most Visited Tips
Java SE Tips
Java ME Tips
Java EE Tips
Other API Tips
Java Applications
Java Libraries
Java Games
Book Reviews
Top Rated Tips
Java SE Tips
Java ME Tips
Java EE Tips
Other API Tips
Java Applications
Java Libraries
Java Games
Book Reviews
Statistics
Registered Users:
770
Java SE Tips:
614
Java ME Tips:
201
Java EE Tips:
184
Other API Tips:
779
Java Applications:
298
Java Libraries:
209
Java Games:
16
Book Reviews:
Search
Search Keyword:
Any words
All words
Exact phrase
Ordering:
Newest first
Oldest first
Most popular
Alphabetical
Section/Category
Search Keyword
javaserver pages
Total 40 results found. Search for [
javaserver pages
] with
Results 1 - 40 of 40
5
10
15
20
25
30
50
1.
Latest Additions - 17.07.06 (389 new tips)
(Newsflashes/NewsFlashes)
...How to Redirect a Request using Servlet What is Client Pull How to debug a Servlet Java EE Tips /
JavaServer
Pages
How to use Session Scope How to open excel sheet through JSP ...
2.
How the JSP page works
(Java EE Tips/JavaServer Pages)
Following steps are followed when any JSP page is called through browser. Step 1: The user goes to a web site made using JSP. The user goes to a JSP page(ending with .jsp). The web browser mak
3.
How to use a Bean in a JSP page
(Java EE Tips/JavaServer Pages)
This Java tip illustrates a method of using a Bean in a JSP page. To use a bean in a JSP page, three attributes must be supplied - an id, which provides a local name for the bean, the bean's class
4.
How to include a file in a JSP page
(Java EE Tips/JavaServer Pages)
This Java tips illustrates an example of a include a file in a JSP page. To include an HTML or JSP fragment in a JSP file, the include directive is used. The effect is essentially equivalent to re
5.
How to run Java code in a JSP page
(Java EE Tips/JavaServer Pages)
This Java tip illustrates an example of running Java code in a JSP page. Java code fragments in a JSP page is called a scriptlet. This example demonstrates how to include scriptlets in a JSP page.
6.
An example of a simple JSP page
(Java EE Tips/JavaServer Pages)
This Java tip illustrates an example of a Quintessential JSP page. A JSP page consists of template text with embedded JSP elements. Template text is automatically written to the output stream whil
7.
What technologies are included in the J2EE platform
(Java EE Tips/Enterprise Java Beans)
The primary technologies in the J2EE platform are: Java API for XML-Based RPC (JAX-RPC)
JavaServer
Pages
Java Servlets Enterprise JavaBeans components J2EE Connector Architecture J
8.
How to use iterate Tag in Struts Framework
(Java EE Tips/JavaServer Pages)
The iterate tag wraps content that is repeated for each element of a specified collection. The collection can be any of the following: An array of java Objects or primitives. An implementa
9.
How to forward requests from Servlet to JSP
(Java EE Tips/JavaServer Pages)
This example code of servlet forwards the request and response to hello.jsp servletToJsp.java import java.io.IOException; import javax.servlet.*; import
10.
How to get and set the property of a JavaBean class
(Java EE Tips/JavaServer Pages)
This example shows the way of getting and setting the property of a JavaBean class. This example uses <jsp:useBean>, <jsp:getProperty> and <jsp:setProperty> tags of the JSP.
11.
How to use JavaBeans and JSP:useBean action in JSP
(Java EE Tips/JavaServer Pages)
This tip shows the use of <jsp:useBean>. This JSP page extracts a property of a JavaBean class and show it to the browser. Here CurrentTimeBean is a JavaBean class which stores the time. It ha
12.
How to use html:messages tag in JSP
(Java EE Tips/JavaServer Pages)
The messages tag is used to display a set of messages stored as an org.apache.struts.action. ActionErrors object, an org.apache.struts.ActionMessages object, a String, or a String array in request
13.
Bean with Indexed Properties and Accessing Indexed values through JSP Bean tags
(Java EE Tips/JavaServer Pages)
In this example, A component is built that can perform statistical calculations on a series of numbers. The numbers themselves are stored in a single, indexed property. Other properties of Bean hold t
14.
How to use jsp:include action
(Java EE Tips/JavaServer Pages)
The <jsp:include> element allows you to include either static and dynamic files in a JSP file. The results of including static and dynamic files are quite different. If the file is static, i
15.
How to get Init parameter Names
(Java EE Tips/JavaServer Pages)
A servlet can examine all its init parameters using getInitParameterNames(); public Enumeration ServletConfig.getInitParameterNames() The GenericServlet class also makes this method dir
16.
How to use jsp:forward tag
(Java EE Tips/JavaServer Pages)
The <jsp:forward> element forwards the request object containing the client request information from one JSP file to another file. The target file can be an HTML file, another JSP file, or a s
17.
How to send e-mail through JSP
(Java EE Tips/JavaServer Pages)
This sample code shows the way to send a mail through JSP. SendMail.html <HTML> <BODY> <FORM METHOD=POST ACTION="DemoSendMail.jsp"> Receiver name: <INPUT TY
18.
Differences between JSP and ASP
(Java EE Tips/JavaServer Pages)
JSP and ASP are fairly similar in the functionality that they provide. JSP may have slightly higher learning curve. Both allow embedded code in an HTML page, session variables and database access and
19.
How to Access Cookies Set at the Client Side
(Java EE Tips/JavaServer Pages)
This tip shows the way to access the cookie information stored at the client side. To access the cookies information at the client side javax.servlet.http.cookies class is used. The following code
20.
Use of global-forwards tag in JSP
(Java EE Tips/JavaServer Pages)
This tag is used to avoid redundant forwards. This element allows configuring forwards that are used by multiple actions in a module. This helps to avoid mentioning for all the actions. The globa
21.
How to use logical tags in JSP
(Java EE Tips/JavaServer Pages)
The purpose of these tags is to print out the body of the tag if the comparison evaluates to true. The following tags can be used in JSP. <logic: Equal> <logic: notEqual> <
22.
How to open excel sheet through JSP
(Java EE Tips/JavaServer Pages)
This tip shows the way to open excel sheet from the JSP code. <%@ page contentType="application/MyExcel.ms-excel" %> <%-- Note that there are tabs--%> 2000 3000 4000 5000 600
23.
How to use Session Scope
(Java EE Tips/JavaServer Pages)
A session is an object associated with a visitor. Data can be put in the session and retrieved from it, much like a Hash table. A different set of data is kept for each visitor to the site. Her
24.
Latest Additions - 08.06.06 (160 new tips)
(Newsflashes/NewsFlashes)
...n image without knowing its size How to decide whether or not a device support JSR-75 Java EE Tips /
JavaServer
Pages
JSTL - Accessing compound bean properties JSTL - Localizing me...
25.
Introduction to Java Servlets with Eclipse
(Java Tutorials/Tutorials)
...s explained in the next paragraphs. Creating a Java Servlet means that you are required to deal with JSP (
JavaServer
Pages
). JSP is actually a HTML but unlike HTML, JSP may have Java codes (usuall...
26.
Introduction to Java Servlets with NetBeans
(Java Tutorials/Tutorials)
...Application Project in NetBeans 5.0 Creating a Java Servlet means that you are required to deal with JSP (
JavaServer
Pages
). JSP is actually a HTML but unlike HTML, JSP may have Java codes (usuall...
27.
Tapestry in Action
(Java Book Reviews/Books)
...hapter 8 Advanced techniques Creating new engine services Client-side scripting Integrating with
JavaServer
Pages
PART 3 BUILDING COMPLETE TAPESTRY APPLICATIONS Chapter 9 Put...
28.
Struts in Action: Building Web Applications with the Leading Java Framework
(Java Book Reviews/Books)
... and multiple modules together make up 1.1. Last chapter of this book shows how Velocity Template can replace
JavaServer
Pages
when used with Struts. Here the author makes use of the same application a...
29.
Spring in Action
(Java Book Reviews/Books)
...pring in a variety of ways including spring’s MVC framework or a third-party web framework. Struts, Tapestry,
JavaServer
Faces, and WebWork are some of the popular frameworks which had been talked abo...
30.
Java 2 Micro Edition
(Java Book Reviews/Books)
...op J2ME applications that connect to network and enterprise resources. Concepts of using Java Servlets and
JavaServer
Pages
along with the ability to transfer information in an XML format. How t...
31.
Using AJAX with Java Technology
(Java EE Tips/Enterprise Java Beans)
...a technology provides the server-side processing for AJAX interactions. It can provide this through servlets,
JavaServer
Pages
(JSP) technology,
JavaServer
Faces (JSF) technology, and web services. Th...
32.
Introducing JavaServer Faces Technology
(Java EE Tips/JavaServer Faces)
...e revolutionized server-side application development. The only thing lacking was a standard -- until now.
JavaServer
Faces (JSF) technology is the newly-approved user interface framework for J2EE ...
33.
Custom Components With JavaServer Faces Technology
(Java EE Tips/JavaServer Faces)
...l2). MVC is a pervasive pattern throughout the world of computer science, and is fundamental to understanding
JavaServer
Faces (JSF) technology. The pattern separates the data and business logic of an...
34.
Using AJAX With Non-HTML Markup in JSF
(Java EE Tips/JavaServer Faces)
This Tech Tip reprinted with permission by java.sun.com
JavaServer
Faces (JSF) technology is a framework that simplifies building user interfaces for Java EE and J2EE applications. The March 2
35.
Uploading file using JSP
(Java EE Tips/JavaServer Pages)
It is often necessary to upload some file from the client machine to server. There is a special input type file in HTML forms to allow the visitor browser local file system to select the file. Whe
36.
How to create a Editable combobox that include both text and icons
(Java SE Tips/javax.swing)
...;, "covers/jsec.gif"), new BookEntry("
JavaServer
Pages
", "covers/jsp.gif"), &nbs...
37.
What is Java EE
(Java SE Tips/java.lang)
... applications. Java EE enhances Java SE with: Enterprise JavaBeans components Java Servlets API
JavaServer
Pages
XML ...
38.
Turbine
(Java Libraries/Web Framework)
... to your application. The Turbine core is free of any dependency on a presentation layer technology. Both
JavaServer
Pages
(JSP) and Velocity are supported inside Turbine. For developers already f...
39.
Apache Tomcat
(Java Applications/Servlet Engine)
...omcat is the servlet container that is used in the official Reference Implementation for the Java Servlet and
JavaServer
Pages
technologies. The Java Servlet and
JavaServer
Pages
specifications are de...
40.
Setting up a servlet environment
(Java EE Tips/Java Servlet)
...at. Java Servlet Development Kit (JSDK) Apache Tomcat is a servlet container used for Java Servlet and
JavaServer
Pages
technologies. Example below describes the development of servlet with...
<< Start
< Prev
1
Next >
End >>
Home
-
About Us
-
Privacy Policy
Copyright 2005 - 2008 www.java-tips.org
Java is a trademark of Sun Microsystems, Inc.