%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
html>
head>
title>我的測試/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>
!--把要添加框架結果添加在head標簽后面就可以了,其中的frame要引入的jsp文件與平常的jsp文件一樣-->
frameset rows="12%,*" >
frame name="sel" src="XXX.jsp" marginwidth="5" marginheight="5" scrolling="Auto" frameborder="0" bordercolor="#0000FF">
frame name="info" src="XXXX.jsp">
/frameset>
body>
/body>
/html>
ps:我們有時候可能要對自己布局好的頁面不讓用戶更改邊框的大小,這樣我們可以在frame里面添加noresize="noresize"屬性就可以實現(xiàn)其中的功能。