09-05
07
页面跳转功能
作者:Java伴侣 日期:2009-05-07
<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>
<%
//response.setStatus(HttpServletResponse.SC_MOVED_PERMANENTLY);
String addUrl = request.getRequestURL().toString().replace("index.jsp","index.shtml");
out.println("addUrl:"+addUrl);
String newLocn="http://www.baolaiw.cn/"+addUrl;
//response.setHeader("Location",newLocn);
//out.println(newLocn);
%>
<%
//response.setStatus(HttpServletResponse.SC_MOVED_PERMANENTLY);
String addUrl = request.getRequestURL().toString().replace("index.jsp","index.shtml");
out.println("addUrl:"+addUrl);
String newLocn="http://www.baolaiw.cn/"+addUrl;
//response.setHeader("Location",newLocn);
//out.println(newLocn);
%>
评论: 0 | 引用: 0 | 查看次数: 241
发表评论