精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

jsp response.sendRedirect()用法詳解

sendredirect()

response和request一樣都是jsp內置對象,request是獲取用戶的請求,response處理用戶請求。sendredirect()函數的作用是重定向網頁,向瀏覽器發送一個特殊的header,然后由瀏覽器來做重定向,轉到指定的頁面。下面我將創建四個頁面,首先是sex.jsp,有一個下拉列表和提交按鈕確定,選擇“男”,就跳轉到male.jsp,選擇“女”就跳轉到female.jsp,中間通過sex_action.jsp進行重定向

<!-- 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;
    	}
    %> 

到此這篇關于jsp response.sendredirect()用法詳解的文章就介紹到這了。

相關文章