Google launches Instagram rival Snapseed

Google said its online social network had grown to 135 million active users, as it added a photo-sharing app to compete against services like Facebook’s Instagram. “Today Google+ is the fastest-growing network …

JSP Sessions

A Session refers to all the request that a single client makes to a server. A session is specific to the user and for each user a new session is …

JSP param action

The JSP param action used to pass the request parameter to destination page, while including or forwarding using include or forward action tag. Example of param action in jsp:include action …

JSP Forward action tag

Forward action tag in JSP transfer the control of one JSP page to another JSP with specify URL. Forward also can be static or dynamic as include action. When we …

JSP include action tag

include action tag Include action tag is almost similar to include directive. This include can be static or dynamic. This include file is first compiled and output of this file …

JSP Action Tag

Action tag is used to transfer the control between pages and is also used to enable the use of server side JavaBeans. Instead of using Java code, the programmer uses …

JSP Scriptlet tag

Scriptlet tag is a type tag used for inserting Java Code into JSP. Notation of the Scriptlet tag is: <% %> To begin the Scriptlet tag, the user must add …

JSP Tag Lib directive

A user can customize actions from their tag file using the Tag Lib directive. The Tag Lib directive is a collection of custom tags. The syntax of Tag Lib directive …