33 lines
765 B
PHP
Executable File
33 lines
765 B
PHP
Executable File
<?php
|
||
/*************************************************************************
|
||
* 文件说明:
|
||
* 功能说明:系统状态显示页面,包含Applet,
|
||
*
|
||
* 调用关系:调用:applet_router.php
|
||
* 被调用:left_menu.php
|
||
*
|
||
*
|
||
* 作者:
|
||
*
|
||
*修改注释:
|
||
*NO.1
|
||
*姓名:
|
||
*时间:
|
||
*修改说明:
|
||
*************************************************************************/
|
||
require("../../inc/header.inc");
|
||
?>
|
||
<frameset rows="*,0%" framespacing="0" border="0" frameborder="0">
|
||
<frame name="main_up" src="led_list_up.php">
|
||
<frame name="footnotes" target="main_up" src="led_list_down.php">
|
||
<noframes>
|
||
<body>
|
||
|
||
<p>此网页使用了框架,但您的浏览器不支持框架。</p>
|
||
|
||
</body>
|
||
</noframes>
|
||
</frameset>
|
||
|
||
</html>
|