第一种用法 直接CALL内容
index.asp
————————————-
<!–#include file="call.asp"–>
<%call test1%>
test1.asp
————————————-
<%
sub test1()
Response.Write "CALL测试内容"
end sub
%>
test1.asp里 跟正常ASP一样 只是index.asp在需要的时候可以立即从test1.asp调用需要的东西。 PS:跟mir里面的FUN一样 嘎嘎 好东西呀
第二种用法 带传递参数的CALL 只能是数字 字符型比较麻烦
index.asp
————————————-
<!–#include file="call.asp"–>
<%call test1(333,666)%>
test1.asp
————————————-
<%
sub test1(a,b)
Response.Write "传递过来的第一个数字是:" & a & " </br>"
Response.Write "传递过来的第二个数字是:" & b & " "
end sub
%>
评论前必须登录!
注册