我正在编写一个类来检查MySQL数据库中的登录名和密码。填充的表单转到一个.jsp文件,然后我想在这个.jsp中导入这个类来执行操作。
这门课是这样的:
import import java.sql.*;
public class TestQuery {
public void logging in() {
String user = request.getParameter("user");
String passwd = request.getParameter("passwd");
Connection C =
当会话超时时,我重定向到登录页面。我需要这一点,无论登录用户名是相同的用户名,这是在会话超时之前登录,然后页面将被重定向到以前的用户访问的页面从登录页面。
例如,
User name is Admin, when this user is open ContactUs.jsp, after the session timeout the page will be redirect to login.jsp, In login.jsp whether the same Admin user is logged in then, the page is redirect to Co
我是JSP web开发的初学者。我有一个登录(Login.jsp)页面为我的网页,其中有标准的登录控件(例如。用户名、密码文本框、“记住我”复选框和一个登录按钮)当用户提供凭据时,在提交详细信息时,调用Authenticate.jsp,其中凭证与数据库匹配,如果正确,则创建该用户的会话,如果凭据不正确。我将用户重定向回response.sendRedirect("./Login.jsp?status=fail");登录页面。
在Login.jsp上,status参数总是被选中,当它给出值fail时,在包含消息User Name or Password Incorrect!的文本
我正在使用这种方法来验证表单中的日志。
index.jsp -> contains <form action=login.jsp method="post"> -> values are submitted -> login.jsp -> if -> response.sendRedirect("index.jsp?valid=1"); -> if not -> response.sendRedirect("index.jsp?valid=0"); if login is successful