The Web Course Information
-
The Most Fundmental SQL Commands
SQL stands for Structured Query Langauge. It is the standardized programming language for relational databases.In order to learn relational databases, you need to learn SQL first. The most basic SQ...
Continue Reading
-
Connecting to Database from JSP
Database is almost a must-have component in dynamic web pages or applications. And this time I am focusing on the connecting to database from JSP using JDBC.JDBC stands for Java DataBase Connectivi...
Continue Reading
-
The Session and Application Objects in JSP
HTTP is a stateless protocol, which makes it difficult to share data between different user requests. The JSP objects session and application thus come to compensate the so-called drawbacks of HTTP...
Continue Reading
-
Some of the Things You should Know about JSP
JSP is designed for the less java-capable web developers to be used as a web server side programming language.However, I would argue that knowing java well still makes your jsp programming life muc...
Continue Reading
-
The Story behind Servlet
Servlet is a piece of code sitting at the server side and waiting for the information from the browsers. It then processes the information and possibly gives feedback to the browsers.The servlet I’...
Continue Reading