a) inculde有2种用法:
i. include其他的esp页面:
此时,include后面不允许出现双引号、括号和分号,也就是说,以下几种写法是错误的:
include “xxxx.esp”
include(xxx.esp)
include xxxx.esp;
只有下面2种写法才是正确的:
include xxx.esp
include folder/yyy.esp
特别注意:
1)、一个include语句必须单独出现在<%%>之间,不能有其他语句,否则include语句将不会被执行;
2)、include语句后面只能是文件名,不允许是变量。
ii. include某个js库:
此时,include后面必须同时出现括号和分号,比如下面2种写法都是正确的:
include(“jquery.min-1.4.2.js”);
var path = “folder/yyy.js”;
include(path);
b) 参考链接:
http://appwebserver.org/forum/viewtopic.php?f=1&t=111&p=454&hilit=maesphandler+include#p454
我的签名:来自序海的呼唤,期待久违的飞扬
熊掌©原创