asp中加入<!--#include file="top.html"-->此段头部调用代码后,DW编辑中其他部分内容看不到了,该怎么处
<!--#includefile="top.html"-->是放在最上面的,而且还去掉了top.html中的head、html,body标记。加入这段代码后编辑器只能看到...
<!--#include file="top.html"-->是放在最上面的,而且还去掉了top.html中的head、html,body标记。加入这段代码后编辑器只能看到top部分,其他部分看不到了,在浏览器可以看到。
展开
3个回答
展开全部
asp中<!--#include file="top.html"-->,是页面引用,没见过这么引用页面的
把<!--#include file="top.html"-->改成<!--#include file="top.asp"-->
top.html 的页面改成top.asp文件, top.html 里的内容拷贝到top.asp里
你要知道你为什么要这么做?这么做是为了引用公共部分代码,不同页面可以重复引用,简化工作,避免重复性工作。 针对2号回答补充,这个不一定要在最上面,要看你页面里是什么代码了 。
举例说明:
这是一个页面
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html >
<head>
<title>引用</title>
<link href="css/css.css" rel="stylesheet" type="text/css" />
</head>
<body>
-----头部代码---
----主体代码---
</body>
</html>
<!--#include file="top.html"-->放在最上面:
假设我有2个页面:index.asp(首页), about.asp(公司简介),这2个页面的头部都是一样的
1.<!--#include file="top.asp>里放:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html >
<head>
<title>引用</title>
<link href="css/css.css" rel="stylesheet" type="text/css" />
</head>
<body>
-----头部代码---
2.首页代码就是:
<!--#include file="top.asp"-->
---首页代码---
</body>
</html>
3.
公司简介代码就是:
<!--#include file="top.asp"-->
---公司简介页代码---
</body>
</html>
把<!--#include file="top.html"-->改成<!--#include file="top.asp"-->
top.html 的页面改成top.asp文件, top.html 里的内容拷贝到top.asp里
你要知道你为什么要这么做?这么做是为了引用公共部分代码,不同页面可以重复引用,简化工作,避免重复性工作。 针对2号回答补充,这个不一定要在最上面,要看你页面里是什么代码了 。
举例说明:
这是一个页面
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html >
<head>
<title>引用</title>
<link href="css/css.css" rel="stylesheet" type="text/css" />
</head>
<body>
-----头部代码---
----主体代码---
</body>
</html>
<!--#include file="top.html"-->放在最上面:
假设我有2个页面:index.asp(首页), about.asp(公司简介),这2个页面的头部都是一样的
1.<!--#include file="top.asp>里放:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html >
<head>
<title>引用</title>
<link href="css/css.css" rel="stylesheet" type="text/css" />
</head>
<body>
-----头部代码---
2.首页代码就是:
<!--#include file="top.asp"-->
---首页代码---
</body>
</html>
3.
公司简介代码就是:
<!--#include file="top.asp"-->
---公司简介页代码---
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询