call index_body()与<!--#include file="inc/index_body.asp"-->
发布网友
发布时间:2022-04-30 08:44
我来回答
共2个回答
热心网友
时间:2023-10-21 23:45
1
call是调用一个函数,而<!--#include file="inc/index_body.asp"-->是文件包含。
文件包含的话就相当于把包含的文件直接拼接在一个文件里,例如
'index_body.asp
<%
function index_body()
...
end function
%>
'index.asp
<!--#include file="inc/index_body.asp"-->
<%call index_body() %>
和
'index.asp
<%
function index_body()
...
end function
call index_body()
%>
效果是一样的。
还有一种用法就是你弄混了的关键
'index_body.asp
<%
function index_body()
...
end function
call index_body()
%>
'index.asp
<!--#include file="inc/index_body.asp"-->
这个和上面两种也是一样的 。
关键是call语句放在哪了的问题。
总之能保证最终能拼接到一起就行。
2 asp是要iis解释后才有,dreamweaver仅仅是一个文本编辑器,没有运行代码的能力,也就是说可视化编程到html代码一级,紧显示html代码表示的内容。而且<!-- -->是html的注释。<!-- -->间的代码即使是html代码也不会在设计界面显示。
热心网友
时间:2023-10-21 23:45
1
call是调用一个函数,而<!--#include file="inc/index_body.asp"-->是文件包含。
文件包含的话就相当于把包含的文件直接拼接在一个文件里,例如
'index_body.asp
<%
function index_body()
...
end function
%>
'index.asp
<!--#include file="inc/index_body.asp"-->
<%call index_body() %>
和
'index.asp
<%
function index_body()
...
end function
call index_body()
%>
效果是一样的。
还有一种用法就是你弄混了的关键
'index_body.asp
<%
function index_body()
...
end function
call index_body()
%>
'index.asp
<!--#include file="inc/index_body.asp"-->
这个和上面两种也是一样的 。
关键是call语句放在哪了的问题。
总之能保证最终能拼接到一起就行。
2 asp是要iis解释后才有,dreamweaver仅仅是一个文本编辑器,没有运行代码的能力,也就是说可视化编程到html代码一级,紧显示html代码表示的内容。而且<!-- -->是html的注释。<!-- -->间的代码即使是html代码也不会在设计界面显示。
热心网友
时间:2023-10-21 23:46
不是的,楼上那位,你可能误解我的意思了。
就像是,我有两个文件,head.asp和body.asp,在dreamweaver和浏览器中都是可以看到的,然后我建index.asp,里面的代码只有下面这两句时:
<!--#include file="head.asp"-->
<!--#include file="body.asp"-->
无论是在dreamweaver还是在浏览器中,就是看不到head和body结合成的index啊?
不是说包含文件吗?包含不是说相当有那样的代码了吗?怎么显示不出来?
如何让head.asp和body.asp结合中index.asp显示出来呢?
对不起,我对这些是半懂不懂的,所以问起来也不知道怎么问好的!~~~~
热心网友
时间:2023-10-21 23:46
不是的,楼上那位,你可能误解我的意思了。
就像是,我有两个文件,head.asp和body.asp,在dreamweaver和浏览器中都是可以看到的,然后我建index.asp,里面的代码只有下面这两句时:
<!--#include file="head.asp"-->
<!--#include file="body.asp"-->
无论是在dreamweaver还是在浏览器中,就是看不到head和body结合成的index啊?
不是说包含文件吗?包含不是说相当有那样的代码了吗?怎么显示不出来?
如何让head.asp和body.asp结合中index.asp显示出来呢?
对不起,我对这些是半懂不懂的,所以问起来也不知道怎么问好的!~~~~