Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
'create a command object
dim comObj
set comObj = server.createObject("ADODB.Command")
'set your properties
comObj.commandType = 4 'adCmdStoredProcedure
comObj.activeConnection = yourConnection
comObj.commandText = "theNameOfYourSPROC"
'assign your input parameters
comObj.parameters("@param1").value = val1
comObj.parameters("@param2").value = val2
'execute your sproc
comObj.execute
'grab your output
output1 = comObj.parameters("@output1").value
output2 = comObj.parameters("@output2").value