frameset整合两个页面一直报404错误 跪求大神
<%@ 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 XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<frameset rows="59,*" frameborder="no" border="1s" framespacing="0">
<frame src="<%=path %>/jsp/main/top.jsp" noresize="noresize" frameborder="0" name="topFrame" marginwidth="0" marginheight="0" scrolling="no"/>
<frameset rows="*" cols="195,*" id="frame">
<frame src="<%=path %>/jsp/main/left.jsp" name="leftFrame" noresize="noresize" marginwidth="0" marginheight="0" frameborder="0" scrolling="auto"/>
</frameset>
</frameset>