Login page in jsp in only one jsp page
Prerequisite ------------------------------------ 1)) Import the ojdbc6.jar /ojdbc14.jar filr to the project by using build path-library-add external jar for database connectivity. 2))Optional--May be some external jar like jsp.api be required index.jsp ============================================================= <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1" import="java.sql.*;"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Insert title here</title> </head> <body> <% String n=request.getParameter("name"); String p=request.getParameter("pass"); if(n==null || p==null) { %> <form action="inde...