ASP Tutorial
ASP HOMEASP Introduction
ASP Install
ASP Syntax
ASP Variables
ASP Procedures
ASP Forms
ASP Cookies
ASP Session
ASP Application
ASP #include
ASP Global.asa
ASP Send e-mail
ASP Objects
ASP ResponseASP Request
ASP Application
ASP Session
ASP Server
ASP Error
ASP FileSystem
ASP TextStream
ASP Drive
ASP File
ASP Folder
ASP Dictionary
ASP ADO
ASP Components
ASP AdRotatorASP BrowserCap
ASP Content Linking
ASP Content Rotator
ASP and AJAX
AJAX IntroAJAX ASP
AJAX Database
ASP Summary
ASP Quick RefASP Summary
ASP Examples
ASP ExamplesASP Quiz
ASP Certificate
ASP Procedures
| « Previous | Next Chapter » |
In ASP you can call a JavaScript procedure from a VBScript and vice versa.
Procedures
The ASP source code can contain procedures and functions:
Example
Show example » |
Insert the <%@ language="language" %> line above the <html> tag to write the procedure/function in another scripting language:
Example
Show example » |
Differences Between VBScript and JavaScript
When calling a VBScript or a JavaScript procedure from an ASP file written in VBScript, you can use the "call" keyword followed by the procedure name. If a procedure requires parameters, the parameter list must be enclosed in parentheses when using the "call" keyword. If you omit the "call" keyword, the parameter list must not be enclosed in parentheses. If the procedure has no parameters, the parentheses are optional.
When calling a JavaScript or a VBScript procedure from an ASP file written in JavaScript, always use parentheses after the procedure name.
More Examples |
Call procedures using VBScript
How to call both a JavaScript procedure and a VBScript procedure in an ASP file.
| « Previous | Next Chapter » |
