jsp 16) memo
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>메모장</title>
</head>
<body>
<h2>한줄 인사</h2>
<!-- 절대 경로 --><!-- http://localhost:8081 까지는 톰캣 -->
<%
String ContextPath = request.getContextPath();
%>
<%=ContextPath %>
<!-- 컨테스트패스는 배포단계에서 바뀔수 있어서 변수에 담아 경로 설정 -->
<!-- <%=request.getContextPath()%> 이거 바로 넣어도댐-->
<form action="<%=ContextPath%>/ex02/20210525_06_momeresult.jsp" method="post">
<!-- 컨페스트패스 jsp02 진입 -->
<!-- <form action="/jsp02/20210525_06_momeresult.jsp" method="post"> -->
이메일 : <input type="email" name="mail"> <br> <br>
메모 : <textarea name="memo" rows="5" cols="15"></textarea> <br>
<button>확인</button>
</form>
</body>
</html>
Author And Source
이 문제에 관하여(jsp 16) memo), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@stpnlsw/jsp-16-memo저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)