I'm getting to grips with ASP Classic using VBScript. I'm having a problem with returning values from a function.
No matter what I do I can't return values from another function to store in a variable. Any help much appreciated!
Say I have:
No matter what I do I can't return values from another function to store in a variable. Any help much appreciated!
Say I have:
Code:
Public Sub MainFunc()
result = test "param1","param2"
End Sub
Private Sub test(param1In,param2In)
{return value}
End Sub
Comment