Yes, it's registered.
My ASp page reads
Dim f
Set f = Server.CreateObject("TestDLL.myFileIO"

f.FileName="c:\test1.txt"
f.OutLine="This is the ASP test"
f.WriteFile
My class takes a file name and writes it to a text file(this only for testing)
My dll is called TestDLL.dll
The class is myFileIO
Listing of class:<<<<<<<<<<<<<<<<<<<<
Option Explicit
Private mvarFileName
Private mvarOutLine As String
Public Property Let OutLine(ByVal szNewValue As String)
mvarOutLine = szNewValue
End Property
Public Property Get OutLine() As String
OutLine = mvarOutLine
End Property
Public Property Get FileName() As String
FileName = mvarFileName
End Property
Public Property Let FileName(ByVal szNewValue As String)
mvarFileName = szNewValue
End Property
Public Sub WriteFile()
Dim iFileNumber As Integer
iFileNumber = FreeFile
Open mvarFileName For Output As iFileNumber
Print #iFileNumber, mvarOutLine
Close iFileNumber
End Sub
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
Thanks for any and all help