PDA

Click to See Complete Forum and Search --> : making a call to code in vb from within asp


raj2000
Jun 6th, 2000, 06:28 PM
I am trying to make a call to a piece of code within
visual basic from within asp.

Ianpbaker
Jun 6th, 2000, 06:40 PM
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