html상에
<form method="get" action="sendredirect.jsp">
검색 키워드 : <input type="text" name="word"><p>
<input type="submit" value="보내기">
<input type="reset" value="취소">
</form>
jsp상에
<body>
<%
String URL = "http://search.naver.com/search.naver?where=nexearch";
String keyword = request.getParameter("word"); //보내진 키워드
URL += "&" + "query=" + keyword;
response.sendRedirect(URL);
%>
'Jsp' 카테고리의 다른 글
JSP 예제 3: 파라미터 겟 , 셋 관련 코드 (0) | 2021.06.19 |
---|---|
JSP 예제: 현재 시간과 관련된 코드 (0) | 2021.06.19 |
JSP 태그 라이브러리 사용방법 (0) | 2021.06.19 |
이클립스에서 데이터베이스 조작, 수정하기 (feat . My SQL 서버) (0) | 2021.05.29 |
jsp / 이클립스 EE 환경에서 mysql 연동 (0) | 2021.05.28 |
댓글