ASP(Active Server Pages 動態(tài)伺服器頁面)是一種產(chǎn)生動態(tài)互動性網(wǎng)頁的強大工具。

ASP 子程式 語法

?ASP 中,您可透過 VBScript 呼叫 JavaScript 子程序,反之亦然。

ASP 子程式 範例

<!DOCTYPE html>
<html>
<head>
<%
sub vbproc(num1,num2)
response.write(num1*num2)
end sub
%>
</head>
<body>
<p>Result: <%call vbproc(3,4)%></p>
</body>
</html>