怎么解决啊
提示jsp文件中有错误
提示jsp文件中有错误
2021-09-15
登录的页面:http://localhost:8080/ServeltLoginDemo/login.jsp
login.jsp
<%@ page language="java" import="java.util.*" contentType="text/html; charset=utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP 'login.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
<div id="container">
<div class="logo">
<a href="dologin.jsp"><img src="assets/logo.png" alt=""/></a>
</div>
<div id="box">
<form action="servlet/LoginServlet" method="post">
<p class="main">
<label>用户名:</label>
<input name="username" value="">
<label>密码:</label>
<input type="password" name="password"value="">
</p>
<p class="space">
<input type="submit" value="登录" class="login" />
</p>
</form>
</div>
</div>
</body>
</html>
举报