I am trying to make a call to a piece of code within
visual basic from within asp.
Printable View
I am trying to make a call to a piece of code within
visual basic from within asp.
Hi raj2000
To do this, you will need to make an activex dll.
to do this
Create your procedures and properties Within VB then compile it as a DLL
then use the
Set mydll = server.CreateObject("projectname.classname")
Within your asp
Then you can use everything within that class
If you need any help Reply Back
Hope This Helps
Ian