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 href="https://csdnimg.cn/release/blogv2/dist/mdeditor/css/style-49037e4d27.css" 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()用法详解的文章就介绍到这了。
相关文章
- Servlet与JSP使用简介及区别详解
- Java之JSP教程九大内置对象详解(下篇)
- Java之JSP教程九大内置对象详解(中篇)
- Java之JSP教程九大内置对象详解(上篇)
- JSP页面实现验证码校验功能
- 基于javaweb+jsp实现个人日记管理系统
- 基于javaweb+jsp实现企业财务记账管理系统
- JSP动态实现web网页登陆和注册功能
- 关于JSP用户登录连接数据库详情
- 基于jsp+mysql实现在线水果销售商城系统
- jsp使用sessionScope获取session案例详解
- jsp session.setAttribute()和session.getAttribute()用法案例详解
- jsp response.sendRedirect()用法详解
- 一篇文章带你了解JavaScript-对象
- JSP之EL表达式基础详解
- jsp Response对象页面重定向、时间的动态显示
- jsp的九大内置对象深入讲解
- jsp EL表达式详解
- 使用JSP技术实现一个简单的在线测试系统的实例详解
- 使用JSP实现简单的用户登录注册页面示例代码解析