请教一下asp include的问题
首先, 我有一个index.asp 然后我需要在里面include top.asp center.asp bottom.asp可是我发现, 我在html里 或者是单独的 .asp文件里 页面显示正常, 用这句话包含了之后, 就出错了
下面附上我的代码和图片
请问一下这种问题怎么解决
index.asp 文件
程序代码:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.> <html xmlns="http://www.> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档 </title> <link rel="stylesheet" href="style/style.css" /> </head> <body> <div class="main"> <div class="header"> <!--#include file="top.asp"--> </div> <div class="center"> </div> <div class="footer"> </div> </div> </body> </html>
top.asp文件
程序代码:
<div class="logo"> </div> <div class="menu"> <ul> <li> <a href="#">首 页</a> </li> <li> <a href="#">公司介绍</a> </li> <li> <a href="#">服务范围</a> </li> <li> <a href="#">企业文化</a> </li> <li> <a href="#">家政常识</a> </li> <li> <a href="#">企业荣誉</a> </li> <li> <a href="#">设备展示</a> </li> <li> <a href="#">行业动态</a> </li> <li> <a href="#">加盟会员</a> </li> <li> <a href="#">在线预订</a> </li> </ul> </div>