반응형
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ include file="./config.jsp" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>JSP 2일차 - 환경설정 파일로드</title>
</head>
<body>
<%
out.print(request.getParameter("username"));
%>
<form name="f" id="f" method="post" action="./ex12.jsp">
<input type="text" name="username">
<input type="submit" value="전송">
</form>
</body>
</html>
반응형
'Back > JSP' 카테고리의 다른 글
JSP Step14 (0) | 2022.08.09 |
---|---|
JSP Step13 (0) | 2022.08.09 |
JSP Step11 (0) | 2022.08.09 |
JSP Step10 (0) | 2022.08.09 |
JSP Step9 (0) | 2022.08.09 |