求jsp中response.sendRedirect()实例;
4个回答
展开全部
response.sendRedirect()是指重定向
跳转的页面文件的相对路径或URL以字符串形式写在括号内
如: response.sendRedirect("index.jsp");
response是jsp的内置对象,所以在jsp下直接打response.sendRedirect();了
楼主用实例,还是先要了解他的作用为最好,如果懂了意思也就不用实例了
跳转的页面文件的相对路径或URL以字符串形式写在括号内
如: response.sendRedirect("index.jsp");
response是jsp的内置对象,所以在jsp下直接打response.sendRedirect();了
楼主用实例,还是先要了解他的作用为最好,如果懂了意思也就不用实例了
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<%@ page language="java" import="bean.Person" pageEncoding="GB2312"%>
<%@ page contentType="text/html;charset=GB2312" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>person1</title>
</head>
<body>
This is person1
<% response.sendRedirect("person2.jsp"); %>
</body>
</html>
<%@ page language="java" import="bean.Person" pageEncoding="GB2312"%>
<%@ page contentType="text/html;charset=GB2312" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>person2</title>
</head>
<body>
This is person2
</body>
</html>
<%@ page contentType="text/html;charset=GB2312" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>person1</title>
</head>
<body>
This is person1
<% response.sendRedirect("person2.jsp"); %>
</body>
</html>
<%@ page language="java" import="bean.Person" pageEncoding="GB2312"%>
<%@ page contentType="text/html;charset=GB2312" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>person2</title>
</head>
<body>
This is person2
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
response.sendRedirect()是指重定向,
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<%@ page language="java" contentType="text/html; charset=UTF-8"%>
<%@page import="com.sm1.bill.dao.Hbkbilldao"%>
<html>
<head>
<title>My JSP 'fukuan.jsp' starting page</title>
</head>
<body>
This is my JSP page. <br>
<%
String id = request.getParameter("fukuan");
int bill_id = Integer.parseInt(id);
Hbkbilldao dao = new Hbkbilldao();
dao.zhifu(bill_id);
response.sendRedirect("/supermarket/billPaymentMain.jsp");
%>
</body>
</html>
<%@page import="com.sm1.bill.dao.Hbkbilldao"%>
<html>
<head>
<title>My JSP 'fukuan.jsp' starting page</title>
</head>
<body>
This is my JSP page. <br>
<%
String id = request.getParameter("fukuan");
int bill_id = Integer.parseInt(id);
Hbkbilldao dao = new Hbkbilldao();
dao.zhifu(bill_id);
response.sendRedirect("/supermarket/billPaymentMain.jsp");
%>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询