SUB及FUCTION
哪位大虾有SUB和FUCTION方面的文章啊我不怎么理解这两个过程到底起什么作用?
具体怎么使用?
哪位高手给我指点一下
在线等
这是定义的名称吧,
可用CALL调用,直接打上名称好像也可以
http://www.cadcnc.com/bbs/address/resave.asp
代码如下:
<%act=request.querystring("act")
if act="sub" then
call ConvertTemp()
ELSE
if act ="function" then
Celsius(fDegrees)
ELSE
response.write"<a href='resave.asp?act=sub'>sub</a><br>"
response.write"<a href='resave.asp?act=function'>function</a>"
end if
end if
Sub ConvertTemp()
response.write"<B>执行SUB过程</B>"
End Sub
Function Celsius(fDegrees)
response.write"<B>执行FUNCTION</B>"
End Function
%>