Archive for the 'Servlets' Category

Servlet add update form

Add update records from Servlet
In this example we will show you how to add, update the employee record into database.
All the records will be saved into MySQL database. This is basic tutorial for the Java programmers who wants to learn how to use JDBC in  their Servlets.
Read more at http://www.roseindia.net/software-tutorials/detail/21713
Thanks

Servlet refresh page

Servlet refresh page
In this example we will show you how you can refresh you page from setting the refresh attribute from a servlet.
response.setHeader(”Refresh”, “10″);
The refresh attribute will direct the browser to refresh the page after 10 seconds. In this will you can develop the application that refreshes automatically.
You don’t’ have to write any page refresh […]

Introduction to web server

Introduction to web server
A web server is a computer on the World Wide Web that stores Html documents that can be retrieved via a Web browser. It is a computer that delivers web pages. Each web server has an IP address and a domain name. For example when we enter a URL http://www.roseindia.net/index.shtml in your […]