jacktripper
Programmer
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?
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?