Hi,
Change the Project Type to ActiveX DLL in the Projects - > Properties
You have to create like this
For example Class User should like this
User class contains
SigIn(uid,pwd)
Create(arguments)
ForgotPassowrd(uid)
ResetPassword(oldPwd,newPw
then create dll
and register with the command "regsvr32.exe"
Then use in you ASP code like below
set obj = Server.CreatObject("Refere
obj.SigIn(uid, pwd)
also plz refere
http://www.thescripts.com/
my suggestion why you would like to do with this old technice . Now ASP.Net is available to do with
Main Topics
Browse All Topics





by: blandyukPosted on 2006-11-19 at 13:50:52ID: 17975986
In order to create a .dll file, you need to create a Class object. In there, you can specify all the functions / properties etc for the object. From there, you compile the project into a .dll file which can then be registered via "regsvr32.exe" in the "C:\Windows\system32" directory. Then you can simply reference the object in asp code via the name you used for the Class object.
You really need to read up on this first before trying to jump in at the deep end lol ;)