日期:2014-05-16  浏览次数:20468 次

MVC3.0里面使用frame问题,就是显示不出来
 主框frame架代码:
<frameset rows="98,*,8" frameborder="no" border="0" framespacing="0">
  <frame src="@Url.Action("Main","Top")" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" />
  <frame src="@Url.Action("Main", "Center")" name="mainFrame" id="mainFrame" />
  <frame src="@Url.Action("Main", "Down")" name="bottomFrame" scrolling="No" noresize="noresize" id="bottomFrame" />
</frameset>
<noframes><body>
</body>

-----------------------------------
Center代码
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0" style="table-layout:fixed;">
  <tr>
    <td><iframe name="I2" height="100%" width="100%" border="0" frameborder="0" src="@Url.Action("Main", "Middel")"> 浏览器不支持嵌入式框架,或被配置为不显示嵌入式框架。</iframe></td>
    <td width="6" bgcolor="#1873aa" style=" width:6px;">&nbsp;</td>
  </tr>
</table>

-----------------------------------
Middel代码
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0" style="table-layout:fixed;">
  <tr>
    <td width="171" id=frmTitle noWrap name="fmTitle" align="center" valign="top"><table width="171" height="100%" border="0" cellpadding="0" cellspacing="0" style="table-layout:fixed;">
      <tr>
        <td  bgcolor="#1873aa" style="width:6px;">&nbsp;</td>
        <td width="165"><iframe name="I1" height="100%" width="165" src="@Url.Action("Main", "Left")" border="0" frameborder="0" scrolling="no"> 浏览器不支持嵌入式框架,或被配置为不显示嵌入式框架。</iframe></td>
      </tr>
    </table> </td>
    <td width="6"  style="width:6px;"valign="middle" bgcolor="1873aa" onclick=switchSysBar()><SPAN class=navPoint 
id=switchPoint title=关闭/打开左栏><img src="images/main_55.gif" name="img1" width=6 height=40 id=img1></SPAN></td>
    <td width="100%" align="center" valign="top"><iframe name="I2" height="100%" width="100%" border="0" frameborder="0" src="http://www.csdn.net"> 浏览器不支持嵌入式框架,或被配置为不显示嵌入式框架。</iframe></td>
  </tr>
</table>

-----------------------------
情况:把Frame、Center设为路由启动项时提示无法找到资源,把Down、left、Top设为路由启动项时运行正常。

请问是什么原因造成的,为什么嵌套的时候出问题,单个运行的时候正常的,麻烦大家看看什么问题。

大家有没有MVC3的frame框架运行正常的代码实例,谢谢。
------解决方案--------------------
用过mvc,但是在里面用frame,
------解决方案--------------------
我用frame 能正常显示
------解决方案--------------------
找不到页面应该和页面里有什么代码无关, 看看是不是没加这个页面.
------解决方案--------------------
没在里面用过frame 帮你顶一下吧
------解决方案--------------------
mvc3.0中 真没有用过frame  帮顶
------解决方案----------------