怎么解决啊

来源:1-1 Servlet概述

qq_慕虎4349303

2021-09-15 00:09

提示jsp文件中有错误http://img4.mukewang.com/6140c93a0001190f09860535.jpg

写回答 关注

1回答

  • qq_慕雪6508572
    2022-03-31 09:27:47

    登录的页面: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>

JAVA遇见HTML——Servlet篇

本门课程在JSP课程的基础上,深入介绍Servlet的基础知识

160615 学习 · 1029 问题

查看课程

相似问题