Wrox Home  
Search P2P Archive for: Go

  Return to Index  

asp_ado_rds thread: Implementing ActiveX Dll in ASP


Message #1 by <gigsvoo@y...> on Sat, 16 Jun 2001 10:59:16 +0800
How to implement an ActiceX dll in ASP page? How do register, create 

instance class? If the dll consist ADO DB Connection and Recordset 

manipulation? Please explain if i create the dll in client and wanna run 

this on a server-side ASP, how?



Thanks in advance, urgent.



David Voo



Message #2 by "Branimir Giurov" <branimir@n...> on Sun, 17 Jun 2001 11:47:02 +0300
Hi.

These are the things that you must do:

1.Create dll in VB or C++.

2.Compile it.

3.If the server that you'll run the dll is not the same machine , you must

register it wit regsvr32.exe. It's not that hard.

4.Create objects from ASP like this:

 dim oMyObject

 set oMyObject=Server.CreateObject("MYDLL.....")

 oMyObject.someMethod()....



that's all.

For more info, check the MSDN. There are a lot of things there on the

subject.

that's all

bye









-----Original Message-----

From: David Voo [mailto:gigsvoo@y...]

Sent: Saturday, June 16, 2001 5:59 AM

To: ASP_ADO_RDS

Subject: [asp_ado_rds] Implementing ActiveX Dll in ASP





How to implement an ActiceX dll in ASP page? How do register, create

instance class? If the dll consist ADO DB Connection and Recordset

manipulation? Please explain if i create the dll in client and wanna run

this on a server-side ASP, how?



Thanks in advance, urgent.



David Voo






  Return to Index