首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Web开发 >

在jbuilder做JSP为什么会出有关问题

2012-01-19 
在jbuilder做JSP为什么会出问题%@pagecontentType text/htmlcharsetGBK %htmlheadtitlemain

在jbuilder做JSP为什么会出问题
<%@   page   contentType= "text/html;   charset=GBK "   %>
<html>
<head>
<title>
main
</title>
</head>
<frameset   rows= "80,* "   cols= "* "     border= "1 "   framespacing= "0 ">
    <frame   src= "head.jsp "   name= "topFrame "   scrolling= "NO "   noresize>
    <frameset   cols= "180,* "     border= "1 "   framespacing= "0 ">
        <frame   src= "left.jsp "   name= "leftFrame "   scrolling= "NO "   noresize>
        <frame   src= "center.jsp "   name= "mainFrame ">
    </frameset>
</frameset>
<noframes>
<body   bgcolor= "#ffffff ">

</body> </noframes>
</html>
-------------------------------------
<%@   page   contentType= "text/html;   charset=GBK "   %>   是这个原因吗?

    为什么我这样子会错?border= "1 "   会错?原因?

[解决办法]
<frameset rows= "80,* " cols= "* " border= "1 " framespacing= "0 "> 看一下有没有这个属性的啊

热点排行