Back/JSP

JSP Step12

NOOWGNAJ 2022. 8. 9. 14:28
반응형
<%@ 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>
반응형