无法 登录
为什么登录不了?就是按“登录“按钮无法调到dologin.jsp的页面上
<%@ page language="java" contentType="text/html; charset=utf-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Insert title here</title> </head> <body> <h1>用户登录</h1> <form action="dologin.jsp" name="loginForm" method="get"></form> <table> <tr> <td>用户名:</td> <td><input type="text" name="usename"/></td> </tr> <tr> <td>密 码:</td> <td><input type="password" name="password"/></td> </tr> <tr> <td colspan="2"><input type = "submit" value = "登录"></td> </tr> </table> </body> </html>