左右框架的frame
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP 'test.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
</head>
<frameset cols="214,*" frameborder="NO" border="0" framespacing="0" hegiht="900">
<frame id="leftFrame" src="http://www.baidu.com" scrolling="auto" name="leftFrame">
<frame id="mainFrame" src="http://www.hao123.com" scrolling="auto" name="mainFrame">
</frameset>
<noframes>
<body>
</body>
</noframes>
</html>