jsp response.sendRedirect()用法詳解
sendredirect()
response和request一樣都是jsp內(nèi)置對(duì)象,request是獲取用戶的請(qǐng)求,response處理用戶請(qǐng)求。sendredirect()函數(shù)的作用是重定向網(wǎng)頁,向?yàn)g覽器發(fā)送一個(gè)特殊的header,然后由瀏覽器來做重定向,轉(zhuǎn)到指定的頁面。下面我將創(chuàng)建四個(gè)頁面,首先是sex.jsp,有一個(gè)下拉列表和提交按鈕確定,選擇“男”,就跳轉(zhuǎn)到male.jsp,選擇“女”就跳轉(zhuǎn)到female.jsp,中間通過sex_action.jsp進(jìn)行重定向
<!-- sex.jsp --> <%@ page language="java" import="java.util.*" pageencoding="utf-8"%> <% string path = request.getcontextpath(); string basepath = request.getscheme()+"://"+request.getservername()+":"+request.getserverport()+path+"/"; %><base href="<%=basepath%>" kesrc="<%=basepath%>" rel="external nofollow"> <title>sex select's page</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="this is my page"> <form action="<%=basepath%>c03/sex_action.jsp" method="post"> <select name="sex"> <option>男</option> <option>女</option> </select> <button type="submit">提交</button> </form> <link rel="external nofollow">
<!-- sex_action.jsp --> <%@ page language="java" import="java.util.*" pageencoding="utf-8"%> <% string path = request.getcontextpath(); string basepath = request.getscheme()+"://"+request.getservername()+":"+request.getserverport()+path+"/"; %><base href="<%=basepath%>" kesrc="<%=basepath%>" rel="external nofollow"> <title>my jsp 'sex_action.jsp' starting page</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="this is my page"> <% request.setcharacterencoding("utf-8"); string sex = request.getparameter("sex"); out.println(sex); if("男".equals(sex)) { response.sendredirect("male.jsp"); return; } else if("女".equals(sex)) { response.sendredirect("female.jsp"); return; } %>
到此這篇關(guān)于jsp response.sendredirect()用法詳解的文章就介紹到這了。
相關(guān)文章
- Servlet與JSP使用簡(jiǎn)介及區(qū)別詳解
- Java之JSP教程九大內(nèi)置對(duì)象詳解(下篇)
- Java之JSP教程九大內(nèi)置對(duì)象詳解(中篇)
- Java之JSP教程九大內(nèi)置對(duì)象詳解(上篇)
- JSP頁面實(shí)現(xiàn)驗(yàn)證碼校驗(yàn)功能
- 基于javaweb+jsp實(shí)現(xiàn)個(gè)人日記管理系統(tǒng)
- 基于javaweb+jsp實(shí)現(xiàn)企業(yè)財(cái)務(wù)記賬管理系統(tǒng)
- JSP動(dòng)態(tài)實(shí)現(xiàn)web網(wǎng)頁登陸和注冊(cè)功能
- 關(guān)于JSP用戶登錄連接數(shù)據(jù)庫(kù)詳情
- 基于jsp+mysql實(shí)現(xiàn)在線水果銷售商城系統(tǒng)
- jsp使用sessionScope獲取session案例詳解
- jsp session.setAttribute()和session.getAttribute()用法案例詳解
- jsp response.sendRedirect()用法詳解
- 一篇文章帶你了解JavaScript-對(duì)象
- JSP之EL表達(dá)式基礎(chǔ)詳解
- jsp Response對(duì)象頁面重定向、時(shí)間的動(dòng)態(tài)顯示
- jsp的九大內(nèi)置對(duì)象深入講解
- jsp EL表達(dá)式詳解
- 使用JSP技術(shù)實(shí)現(xiàn)一個(gè)簡(jiǎn)單的在線測(cè)試系統(tǒng)的實(shí)例詳解
- 使用JSP實(shí)現(xiàn)簡(jiǎn)單的用戶登錄注冊(cè)頁面示例代碼解析