日期:2014-05-20  浏览次数:20689 次

HTML页面转JSP问题

<html>
<head>
<title>管理中心</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
</head>
<frameset rows="59,*" frameborder="no" border="0" framespacing="0">
<frame src="top.html" noresize="noresize" frameborder="0"
name="topFrame" marginwidth="0" marginheight="0" scrolling="no">
<frameset rows="*" cols="195,*" id="frame">
<frame src="left.html" name="leftFrame" noresize="noresize"
marginwidth="0" marginheight="0" frameborder="0" scrolling="auto">
<frame src="right.html" name="main" marginwidth="0" marginheight="0"
frameborder="0" scrolling="yes">
</frameset>
<noframes>
<body></body>
</noframes>
</frameset>
</html>

有一个index.html页面,用<frameset>标签,如果直接将top.html..left.html  改成jsp页面,index.html页面显示不正常,请问需要怎么改,才能将所有的HTML页面转为jsp页面。
------解决方案--------------------
那你把index页面也改成jsp页面试试