怎样优化这个页面?

来源:百度知道 编辑:UC知道 时间:2024/06/01 16:42:59
老师让我优化一个网站,就是添加一些关键字.以下是服务器ASP主页代码:

<!--#include file="config.asp"-->
<!--#include file="conn.asp"-->
<!--#include file="format.asp"-->
<!--#include file="error.asp"-->
<!--#include file="lib/inctop.asp"-->
<!--#include file="lib/index_body.asp"-->
<!--#include file="lib/nav.asp"-->
<!--#include file="lib/incfooter.asp"-->
<style type="text/css">
<!--
A:link {
COLOR: #656565;
text-decoration: none;
}
A:visited {
COLOR: #336699;
text-decoration: none;
}
A:active {
COLOR: #ff0000;
text-decoration: none;
}
A:hover {
COLOR: #ff6600;
text-decoration: none;
}

-->
</style>
<%
call index_top()
call index_nav()

call index_body()
call endpage()%>&

<!--#include file="config.asp"-->
<!--#include file="conn.asp"-->
<!--#include file="format.asp"-->
<!--#include file="error.asp"-->
<!--#include file="lib/inctop.asp"-->
<!--#include file="lib/index_body.asp"-->
<!--#include file="lib/nav.asp"-->
<!--#include file="lib/incfooter.asp"-->
上面的代码是插入其他的页面,相当于将其他页面的代码拿到这里来使用,不能删除的。上面那老兄说的不对啊!
按照一般规则他们的作用分别是:
配置文件
数据库连接文件
格式定义文件
错误处理文件
页面头部显示文件
页面主体显示文件
页面侧面显示文件
页面底部显示文件
<style type="text/css">
<!--
A:link {
COLOR: #656565;
text-decoration: none;
}
A:visited {
COLOR: #336699;
text-decoration: none;
}
A:active {
COLOR: #ff0000;
text-decoration: none;
}
A:hover {
COLOR: #ff6600;
text-decoration: none;