sir i want to redirect my page like i fill username and password in a HTML page and then it will be checked in a SERVLET and then as the username and password it will be get redirected to a JSP page.. below is the code--:::
it is running properly but when it will be redirected to a JSP page it will not showing any output......and not also giving any error..please tell me the mistake i m making.... thank you gaurav
[EDIT - code tags added by Dave] [ February 16, 2005: Message edited by: David O'Meara ]
Also, and this is more of a JDBC issue than a servlet one, it is very inefficient to pull all the records from the table and loop through them in the Java code like that.
Instead of "SELECT * FROM LOGIN", use "SELECT * FROM LOGIN WHERE user_name = '" + user + "' AND password = '"" + pass + "'"; (or better, use a preparedStatement).
This will return either 0 or 1 rows.
This lets the database, which is much more suited to this type of work, handle the searching. It also cuts down on the network traffic between the database and webserver machines.