<frameset rows="20%,*"> <frame src="__URL__/top" name="top" /> <!--此处src的写法,含.html为静态网页不编译php文件--> <frameset cols="20%,*"> <frame src="__URL__/left" name="left" /> <frame src="__URL__/right" name="right" /> </frameset> </frameset><noframes></noframes>
<?php // 本类由系统自动生成,仅供测试用途 class IndexAction extends Action{ public function index(){ $this->display(); } function left(){ $this->display(); } function top(){ $this->assign("admin","ljfbest"); $this->display(); } function right(){ $this->display(); } } ?>