关于ASP做首页的问题!!!
发布网友
发布时间:2022-10-08 18:32
我来回答
共2个回答
热心网友
时间:2023-11-15 11:46
补充:
方法1:
做成函数,放在文件fun.asp里
然后在每页里
<!--#include file="fun.asp"-->
然后在适当的位置调用函数
方法2:
在函数里加上绝对定位(position:absolute)
放在文件fun.asp里
然后在每页里
<!--#include file="fun.asp"-->
然后在任意位置调用函数
方法3:
做成个模板文件,然后在详细页面文件中使用这个模板,而在模板中定义了你这两个东西
方法4:
用JS
首页用index.html
里面写上
<html>
<head>
<title>蓝色星空BBS</title>
</head>
<frameset name="mainframe" id="mainframe" frameborder="0" border="1" cols="150,*">
<frame name="menu" marginwidth="0" marginheight="0" src="bbsleft.php">
<frame name="main" marginwidth="0" marginheight="0" src="index.php">
</frameset>
</html>
一类的代码
上面的就是我们学校的BBS的做法,只是把asp的换成了php的而已!
热心网友
时间:2023-11-15 11:46
<!--#include file="top.asp"-->
<!--#include file="left.asp"-->
在合适的位置使用上面的代码就可以了