un poquitin de lectura aqui
http://www.tizag.com/aspTutorial/aspDLL.php
del cual dice..
registrar el DLL en el servidor
Permisos para el usuario IIS para utilizar este DLL
y en tu ASP
algo como esto
Código ASP:
Ver original<%
'Note this is example code, it will not work
' unless you create a myDLL, myClass, and a myMethod
Dim myObject
myObject = Server.CreateObject("myDLL.myClass")
myObject.myMethod("something")
myObject = nothing
%>
saludos