分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 网页技术

JSTL核心标签库——重定向URL处理标签、网页导入标签

发布时间:2023-09-06 02:25责任编辑:蔡小小关键词:暂无标签

<c:redirect>重定向标签

  相当于HttpServletResponse的sendRedirect()方法。

<%@page contentType="text/html" pageEncoding="UTF-8" %><%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %><!DOCTYPE html><html><head> ???<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> ???<title>Hello</title></head><body> ???<c:redirect url="/home.jsp"> ???????<c:param name="name" value="${param.name}"></c:param> ???????<c:param name="age" value="${param.age}"></c:param> ???</c:redirect></body></html>
index.jsp
<%@ page contentType="text/html" pageEncoding="UTF-8" %><!DOCTYPE html><html><head> ???<title>Home</title> ???<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"></head><body> ???欢迎 ${param.name} 登陆</body></html>
home.jsp

测试:http://127.0.0.1/home.jsp?name=zs&age=18
响应:欢迎 zs 登陆


<c:url>URL重写标签 

  在用户关闭Cookie功能时,自动用Session ID来进行URL重写。

  

JSTL核心标签库——重定向URL处理标签、网页导入标签

原文地址:https://www.cnblogs.com/Mike_Chang/p/10088575.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved