用户
 找回密码
 入住 CI 中国社区
搜索
查看: 2142|回复: 3
收起左侧

[已解决] 为什么页面访问不显示,框架不支持还是怎么回事?

[复制链接]
发表于 2012-5-23 09:50:52 | 显示全部楼层 |阅读模式
视图文件:shouye。php
<frameset rows="*" cols="180,*" frameborder="no" border="0" framespacing="0">
  <frame src="left.php" name="leftFrame" scrolling="auto" noresize="noresize" id="leftFrame" title="leftFrame" />
  <frameset rows="50,*" frameborder="no" border="0" framespacing="0">
    <frame src="head.php" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" title="topFrame" />
    <frame src="list.php" name="mainFrame" id="mainFrame" title="mainFrame" />
  </frameset>
</frameset>
left.php,head。php,list。php都是在views文件夹下daemon文件夹下面。

控制器:class Backinterface extends CI_Controller {
function __construct(){
  parent::__construct();
     $this->load->helper('url');
}
public function index()
{
  $this->load->view('daemon/shouye');
      }

现在就是访问,但是页面不显示啊,怎么回事呢?

发表于 2012-5-23 16:29:06 | 显示全部楼层
本人菜鸟一个,还是等大神来解答吧。
 楼主| 发表于 2012-5-23 18:02:49 | 显示全部楼层
嗯,顶上去
发表于 2012-5-23 18:05:06 | 显示全部楼层
视图不能直接访问的,建议你看看 http://codeigniter.org.cn/user_guide/tutorial/index.html

本版积分规则