I created a .dll in VB6. It's very simple, this is all there is to it...
____________________________________
Option Explicit
Public Function doit()
MsgBox ("Testing"
, vbOKOnly, "Application Test"
End Function
____________________________________
I also published it to the server. However, now that the .dll has been created, and it's in on the computer, how to I implement it for use in the .asp page? What do I need to do to be able to use the "doit()" function by calling it from the asp code?
-Ovatvvon :-Q
____________________________________
Option Explicit
Public Function doit()
MsgBox ("Testing"
End Function
____________________________________
I also published it to the server. However, now that the .dll has been created, and it's in on the computer, how to I implement it for use in the .asp page? What do I need to do to be able to use the "doit()" function by calling it from the asp code?
-Ovatvvon :-Q