Free Online Programming Tutorials

Let’s Learn Web Programming!





Archive for September, 2009

package examples.filters;

import java.io.IOException;
import javax.servlet.Filter;
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;

/**
* @version 1.0
* @author
*/

public class HelloWorldFilter implements Filter
Read the rest of this entry »

This is a container which hosts the FRAME,
FRAMESET, and NOFRAME tags.

< FRAMESET
COLS=col-widths
FRAMEBORDER=yes-no
FRAMESPACING=spacing
ROWS=row-heights
BORDERCOLOR=“colorname/rgb format” >

Frames

Defines a single frame in a frameset and there is no matching end tag as this is not a container.
Read the rest of this entry »

Area Specifies the shape of a hyperlink “hot spot” in a client-side image map.

< AREA
ALT=text
COORDS=coordinates
HREF=url
SHAPE=CIRC | CIRCLE | POLY | POLYGON | RECT | RECTANGLE >

On the other hand, < MAP NAME = name > Specifies a collection of hot spots for a client-side image map.
Read the rest of this entry »

Cookie is a method of storing information about the page returned by the server and stored locally in the browser.

Purpose of the cookie is to store the state of the client enabling the server to know about the client’s previous actions on the page downloaded…
Read the rest of this entry »