2019.05.20

 

 주는 방식에는 두가지 방식(GET/POST)이 있고 받는 방식은 같다

 // GET 방식

 어떠한 정보를 가져와서 조회하기 위해서 사용되는 방식

 

 예)

1
2
3
<tr>
    <td><a href = "<%= request.getContextPath() %>/dicDetail.jsp?idx=<%= dicDTO.idx %>"> 상세보기 </a></td>
</tr>
 

 

 

 // POST 방식

 데이터를 서버로 제출하여 추가 또는 수정하기 위해서 데이터를 전송하는 방식

 

 예)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<form action = "<%= request.getContextPath() %>/dicInsertAction.jsp" method = "post">
    <table class = "table table-striped">
        <tr>
            <th> eng </th>
            <th> kor </th>
        </tr>
        <tr>
            <td><input type = "text" name = "eng" class="form-control"></td>
            <td><input type = "text" name = "kor" class="form-control"></td>
        </tr>
    </table>
    <div class = "text-right">
        <button type = "submit" class = "btn btn-outline-secondary"> 확인 </button>
    </div>
</form>
 

 

 

 // 받기

 

예)

1
2
3
4
5
6
7
<%
    request.setCharacterEncoding("euc-kr"); // 한글이 깨지지 않도록
    String eng = request.getParameter("eng");
    String kor = request.getParameter("kor");
%>
 

+ Recent posts