 |
JSP
JSP stands for Java Server Pages. JSP is a server-side technology Java Server Pages are an extension to the Java Servlet technology that was developed by Sun.
JSPs have dynamic scripting capability that works in tandem with HTML code, separating the page logic from the static...
By pradeep
Last Message By gkumar
|
12 23,851 |
 |
This article shows you how to track the session between different JSP pages. In any web application user moves from one page to another and it becomes necessary to track the user data and objects throughout the application. JSP provide an implicit object "session", which can be use to save the data...
By Sanskruti
Last Message By tiwvinay
|
8 38,317 |
 |
The Date object is used to work with dates and times. The Date object is useful when you want to display a date or use a timestamp in some sort of calculation. In java you can either make a Date object by supplying the date of your choice, or you can let Javascript create a Date object based on...
By Sanskruti
Last Message By salman8200
|
8 15,233 |
 |
This article demonstrates how to get checkbox value(s) from a HTML form to a JSP page. It consists of one HTML page 'sports.html', and one JSP page 'sports.jsp'.
Prerequisites
In order to complete the example application, you should be familiar with the following:
HTML
Java
JSP
By Sanskruti
Last Message By alssadi
|
6 168,534 |
 |
In the previous article I explained about the different JSP tags except action tags. In this article I have explained about the JSP implicit objects and JSP action tags in details.
JSP Implicit Objects
JSP provides a set of implicit objects that can be used to access many server-side objects...
By techgeek.in
Last Message By Tobiasgar
|
6 12,444 |
 |
Introduction To Apache Web Server
Apache is a public domain Web server developed by a loosely knit group of programmers. Public domain refers to any program that is not copyrighted. Public-domain software is free and can be used without restrictions. The term public-domain software is often used...
By Janu
Last Message By shabbir
|
3 15,617 |
 |
JSP Compared To ASP
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 manipulation. Whereas ASP is mostly found on Microsoft platforms i.e. NT,JSP...
By pradeep
Last Message By gkumar
|
3 12,412 |
 |
<%
// fetch the file
String filename = "companySecret.txt";
String filepath = "C:\\";
response.setContentType("application/octet-stream");
response.setHeader("Content-Disposition", "attachment; filename=\"" + filename + '"');
java.io.FileInputStream fileInputStream = new...
By pradeep
Last Message By gkumar
|
2 12,367 |
 |
Introduction
A JavaServer Page (JSP) is a template for a web page that uses Java code to generate an HTML document dynamically.They are run on the server in a JSP container which translates them into equivalent servlets.They are text files similar to HTML pages with some additional tags which...
By techgeek.in
Last Message By rameshb
|
2 18,205 |