asp 函數與asp過程提供了一種方法來創建重新編程代碼可用模塊和避免重寫的代碼每次您執行特定任務同一個塊
你可以寫在ASP中的職能相似的方式來寫他們在Visual Basic
<%@ LANGUAGE="VBSCRIPT" %>
<%
Sub subroutineName( parameter_
statement_
statement_
statement_n
end sub
%>
函數在不同在於它返回的數據
<%@ LANGUAGE="VBSCRIPT" %>
<%
Function functionName( parameter_
statement_
statement_
statement_n
end function
%>
在有一個用來打印頁面上的信息的程序代碼看起來
Select ActionSelect AllTry It<%@ LANGUAGE="VBSCRIPT" %>
<%
Sub GetInfo(name
Response
Response
Response
End Sub
%>
現在讓我們考慮如何調用子
<%
Call GetInfo("Mr
GetInfo "Mr
%>
在每個例子
現在讓我們來看看一個函數
<%
Function Square(num)
Square = num * num
end function
Response
if
Response
else
Response
end if
%>
From:http://tw.wingwit.com/Article/program/net/201311/14334.html