📄 e1062. implementing a redirect in a jsp page.txt
字号:
A redirect in a JSP page is implemented with a call to response.sendRedirect() in a scriptlet. Any generated output must not be flushed before this call, otherwise an exception is thrown.
<%
String redirectURL = "http://hostname.com/";
response.sendRedirect(redirectURL);
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -