메모장 테스트
<HTML> <BODY> <h2>메모장</h2> <FORM METHOD=POST ACTION="ImplicitExample3.jsp"> 성명 : <INPUT TYPE="text" NAME="name"><p> 메모 : <INPUT TYPE="text" NAME="memo" SIZE="40"><p> <INPUT TYPE="submit" VALUE="입력"> <INPUT TYPE="reset" VALUE="다시쓰기"> </FORM> </BODY> </HTML> |
<%@ page contentType="text/html;charset=EUC-KR" import="java.util.*" %> <% request.setCharacterEncoding("euc-kr"); String name = request.getParameter("name"); String memo = request.getParameter("memo"); Date date = new Date(); %> <h2>메모장</h2> <table border="1"> <tr> <td>성명</td> <td><%=name%></td> </tr> <tr> <td>메모</td> <td><%=memo%></td> </tr> <tr> <td>날짜</td> <td><%=date.toLocaleString()%></td> </tr> </table> |
'00. > 03. Web Language' 카테고리의 다른 글
[JSP] JDBC 드라이브 설치 및 MySQL (0) | 2013.07.15 |
---|---|
[JSP] JSP페이지 한글 깨짐 현상 (0) | 2013.07.15 |