課程
/后端開(kāi)發(fā)
/Java
/JAVA遇見(jiàn)HTML——Servlet篇
提示jsp文件中有錯(cuò)誤
2021-09-15
源自:JAVA遇見(jiàn)HTML——Servlet篇 1-1
正在回答
登錄的頁(yè)面: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>
舉報(bào)
本門課程在JSP課程的基礎(chǔ)上,深入介紹Servlet的基礎(chǔ)知識(shí)
2 回答項(xiàng)目中的lhgcore.js文件報(bào)錯(cuò)了,該怎么解決?。?/p>
2 回答關(guān)于無(wú)法選擇birthday,怎么解決?
3 回答點(diǎn)擊商品出現(xiàn)這個(gè)怎么解決?
3 回答以解決
3 回答已解決
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號(hào)-11 京公網(wǎng)安備11010802030151號(hào)
購(gòu)課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號(hào)
2022-03-31
登錄的頁(yè)面:http://localhost:8080/ServeltLoginDemo/login.jsp
login.jsp