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 <!DOCTYPE html> <% sub vbproc(num1,num2) response.write(num1*num2) end sub %> Result: <%call vbproc(3,4)%> Show Example...
sql_statement GO; Execute a Stored Procedure EXECprocedure_name; Demo Database Below is a selection from the "Customers" table in the Northwind sample database: CustomerIDCustomerNameContactNameAddressCityPostalCodeCountry 1 Alfreds FutterkisteMaria AndersObere Str. 57Berlin12209Germany ...