Hello,

I have just created my first DLL with a name of m32 and a class of pcls: this is the code:

VB Code:
  1. Public Sub OutputNode()
  2. Session.SessionID
  3. End Sub



and in ASP page i put this code

Code:
<% 
Dim pg
Set pg=Server.CreateObject ("m32.pcls")
pg.OutputNode
%>
and i get this:

m32 error '800a01a8'

Object required

/Default.asp, line 4


Anyone know how to fix that? The file name is m32.dll it is registed.


Thanks for help,