Is my while loop correct? I'm using jsp with html for a project. Not able to

Sowmya Raj

New member
move through records. can u help? This is my while loop... Please tell me if there is any error here.

while (rs.next())
{
if ((request.getParameter("txtname").equals(rs.getString("cname"))) && (request.getParameter("pwd").equals(rs.getString("cpwd"))))
{
%>
<jsp:forward page="home.html"/>
<%

}
else
{
%>

<jsp:forward page="login.html"/>
<%

}
}

rs.close();

}

The problem is it is taking only 1st record value for login. All other records are not being recognized by this while loop. Please help. This loop is for login form..
 
Back
Top