Hello, I am fairly new to ASP so any help is appreciated.
I would like to access a DLL that I created using an ASP page. My code is:
'Declare object
Dim objConn
'Set object to DLL Name and Class
Set objConn = Server.CreateObject("DataUtilityDLL.cClass"
'Pass in parameters to DLL Method and retrieve back the # of rows added to database
Set intRows = objConn.addnew(param1, param2)
My DLL connects to an instance of a SQL Server Database using ADO.
When I test this using a form from VB it works but somehow when I try to access the DLL from ASP it doesn't.
Thank you in advance.
I would like to access a DLL that I created using an ASP page. My code is:
'Declare object
Dim objConn
'Set object to DLL Name and Class
Set objConn = Server.CreateObject("DataUtilityDLL.cClass"

'Pass in parameters to DLL Method and retrieve back the # of rows added to database
Set intRows = objConn.addnew(param1, param2)
My DLL connects to an instance of a SQL Server Database using ADO.
When I test this using a form from VB it works but somehow when I try to access the DLL from ASP it doesn't.
Thank you in advance.
