JSP Response.sendRedirect()方法:重定向響應

2020-07-16 10:04:58
該方法用於把響應重定向到另一個位置進行處理。

語法:

sendRedirect(String location)

引數說明:
  • location:要重定向的地址。

範例

將請求轉發至程式設計詞典首頁,關鍵程式碼如下:
<%
  response.sendRedirect("http://www.mrbccd.com");
%>