org.apache.jasper.JasperException: An exception occurred processing [/login1.jsp] at line [6]
3: String email = request.getParameter("email");
4: String pwd = request.getParameter("password");
5: Class.forName("com.mysql.jdbc.Driver");
6: Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/dbname","root","");
7: Statement st = con.createStatement();
8: ResultSet rs;
9: rs = st.executeQuery("select * from admin where email='" + email + "' and pass='" + pwd + "'");