Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Newbie: call DLL from ASP page to hit Stored Proc

Status
Not open for further replies.

jacktripper

Programmer
Joined
Dec 5, 2001
Messages
124
Location
US
I'm pretty new with .Net, and ASP in general. I've got some code which I'm trying to modify. It basically consists of various ASP web pages (.asp files) which seem to make hits to the SQL Server Stored Procedures by calling various compiled DLLs in the system.

I'm not really sure how this is done. I've made web services in .NET before, but I've never used DLLs in "old style" ASP pages to transfer data from the DB.

For example, I know in this code that MY_ACTDIR is referring to a DLL file by the same name:
set objCU=server.createobject "MY_ACTDIR.clsActiveDirectoryCon")
objCU.DBServer = CommDB
objCU.DBUser = CommDBUser
objCU.DBPword = CommonDBPword

Are there some tutorials or walkthroughs that cover this concept? Can anyone point me in the right direction?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top