ASP 子程序

在 ASP 中,你可通过 VBScript 和其他方式调用子程序。

实例:

调用使用 VBScript 的子程序

如何从 ASP 调用以 VBScript 编写的子程序。

  1. <html>
  2. <head>
  3. <%
  4. sub vbproc(num1,num2)
  5. response.write(num1*num2)
  6. end sub
  7. %>
  8. </head>
  9. <body>
  10. <p>您可以像这样调用一个程序:</p>
  11. <p>结果:<%call vbproc(3,4)%></p>
  12. <p>或者,像这样:</p>
  13. <p>结果:<%vbproc 3,4%></p>
  14. </body>
  15. </html>

调用使用 JavaScript 的子程序

如何从 ASP 调用以 JavaScript 编写的子程序。

  1. <%@ language="javascript" %>
  2. <html>
  3. <head>
  4. <%
  5. function jsproc(num1,num2)
  6. {
  7. Response.Write(num1*num2)
  8. }
  9. %>
  10. </head>
  11. <body>
  12. <p>
  13. 结果:<%jsproc(3,4)%>
  14. </p>
  15. </body>
  16. </html>

调用使用 VBScript 和 JavaScript 的子程序

如何在一个 ASP 文件中调用以 VBScript 和 JavaScript 编写的子程序。

  1. <html>
  2. <head>
  3. <%
  4. sub vbproc(num1,num2)
  5. Response.Write(num1*num2)
  6. end sub
  7. %>
  8. <script language="javascript" runat="server">
  9. function jsproc(num1,num2)
  10. {
  11. Response.Write(num1*num2)
  12. }
  13. </script>
  14. </head>
  15. <body>
  16. <p>结果:<%call vbproc(3,4)%></p>
  17. <p>结果:<%call jsproc(3,4)%></p>
  18. </body>
  19. </html>

子程序

ASP 源代码可包含子程序和函数:

  1. <html>
  2. <head>
  3. <%
  4. sub vbproc(num1,num2)
  5. response.write(num1*num2)
  6. end sub
  7. %>
  8. </head>
  9.  
  10. <body>
  11. <p>Result: <%call vbproc(3,4)%></p>
  12. </body>
  13.  
  14. </html>

将 <%@ language="language" %> 这一行写到 <html> 标签的上面,就可以使用另外一种脚本语言来编写子程序或者函数:

  1. <%@ language="javascript" %>
  2. <html>
  3. <head>
  4. <%
  5. function jsproc(num1,num2)
  6. {
  7. Response.Write(num1*num2)
  8. }
  9. %>
  10. </head>
  11.  
  12. <body>
  13. <p>Result: <%jsproc(3,4)%></p>
  14. </body>
  15.  
  16. </html>

VBScript 与 JavaScript 之间的差异

当从一个用 VBScript 编写的 ASP 文件中调用 VBScript 或者 JavaScript 子程序时,可以使用关键词 "call",后面跟着子程序名称。假如子程序需要参数,当使用关键词 "call" 时必须使用括号包围参数。假如省略 "call",参数则不必由括号包围。假如子程序没有参数,那么括号则是可选项。

当从一个用 JavaScript 编写的 ASP 文件中调用 VBScript 或者 JavaScript 子程序时,必须在子程序名后使用括号。