在JSP中重定向页面? [英] Redirect pages in JSP?

查看:277
本文介绍了在JSP中重定向页面?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我必须在jsp中设计几个页面。
点击第一页上的提交按钮后,该页面应自动重定向到第二页。

I have to design several pages in jsp. After clicking on the submit button on the first page, the page should be automatically redirected to the second page.

您能帮忙快速举例说明吗?链接到演示如何实现此目的的教程?

Can you help with a quick example or a link to a tutorial that demonstrates how to implement this?

推荐答案

<%
    String redirectURL = "http://whatever.com/myJSPFile.jsp";
    response.sendRedirect(redirectURL);
%>

这篇关于在JSP中重定向页面?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆