๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ

๐ŸŒ HTML\CSS

html์˜ Action๊ณผ JSP๋ฅผ ํ™œ์šฉํ•ด ์ž…๋ ฅ๋ฐ›์€๊ฐ’ ๋„˜๊ฒจ์ฃผ๋Š”๋ฒ•

by Meteora_ 2021. 2. 24.
728x90

html ํŒŒ์ผ->

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>



<form action="Newfile.jsp">

์ด๋ฆ„:<input type="text" name="name"> <!-- name์€ ๊ฐ’์„ ์ „๋‹ฌํ•˜๊ธฐ ์œ„ํ•œ ๋ชฉ์  -->

<input type="submit" value="์ด๋™">

</form>

</body>
</html>

 

 

jsp ํŒŒ์ผ-> ์ž๋ฐ”์ฟผ๋ฆฌ๋Š” <% %> ๋กœ ๋ฌถ์–ด์ค€๋‹ค

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>

<%
// java ์˜์—ญ
String name = request.getParameter("name");
System.out.println("name:" + name);

// Dao, DB ์ ‘๊ทผ

%>

</body>
</html>

 

 

๊ฒฐ๊ณผ์ฐฝ ->

 

์•„๋ฌด๊ฒƒ๋„ ์ž…๋ ฅํ•˜์ง€์•Š์•„์„œ null์ด ๋‚˜์™”๋‹ค

 

์ด๋ฆ„์„ ์ž…๋ ฅํ•˜๋ฉด ํ•ด๋‹น ์ด๋ฆ„์ด ๋œฌ๋‹ค

 

๋Œ“๊ธ€