| Author |
Value in the else condition is getting printed as the page loads
|
sanidhya kumar
Greenhorn
Joined: Sep 05, 2012
Posts: 18
|
|
|
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56554
|
|
Posting just code without an explanation isn't going to get you much help. Just posting some text in the subject is not enough.
Please explain in detail what the problem is (beside using scriptlets in a modern JSP )
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
sanidhya kumar
Greenhorn
Joined: Sep 05, 2012
Posts: 18
|
|
sanidhya kumar wrote:
the message in else statement is getting printed as the page loads,
but it should have been printed only if user name and password is wrong.
|
 |
sanidhya kumar
Greenhorn
Joined: Sep 05, 2012
Posts: 18
|
|
sanidhya kumar wrote:
sanidhya kumar wrote:
the message in else statement is getting printed as the page loads,
but it should have been printed only if user name and password is wrong.
please see line no 64
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56554
|
|
Well, I'm sure you know that I'm going to tell you that putting Java code into a JSP, especially database access, is a really bad practice that causes lots of problems, including ones like this.
My advice: move the Java code into Java classes, and use the JSTL and EL on the page rather than obsolete and discredited scriptlets.
|
 |
Ivan Jozsef Balazs
Ranch Hand
Joined: May 22, 2012
Posts: 454
|
|
Do you intentionally drop the first element of rs?
|
 |
William P O'Sullivan
Ranch Hand
Joined: Mar 28, 2012
Posts: 860
|
|
Ivan is correct.
The first rs.next() advances the rs pointer, so if only 1 result then the while rs.next() is false
leading to ... ?
WP
|
 |
 |
|
|
subject: Value in the else condition is getting printed as the page loads
|
|
|