課程
/后端開發
/Java
/JAVA遇見HTML——Servlet篇
提示jsp文件中有錯誤
2021-09-15
源自:JAVA遇見HTML——Servlet篇 1-1
正在回答
登錄的頁面: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>
<%@ 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" />
? ? </form>
? ?</div>
? </body>
</html>
舉報
本門課程在JSP課程的基礎上,深入介紹Servlet的基礎知識
2 回答項目中的lhgcore.js文件報錯了,該怎么解決???
2 回答關于無法選擇birthday,怎么解決?
3 回答點擊商品出現這個怎么解決?
3 回答已解決
3 回答以解決
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號-11 京公網安備11010802030151號
購課補貼聯系客服咨詢優惠詳情
慕課網APP您的移動學習伙伴
掃描二維碼關注慕課網微信公眾號
2022-03-31
登錄的頁面:http://localhost:8080/ServeltLoginDemo/login.jsp
login.jsp