I'm wondering how to get a Public Property from an external script. The test code is below and and it seems to display an empty variable for tValue
using this method.
Is there something I'm not doing here?
'External Code
Set nObj = New Test
Response.Write(nObj.tValue)
'The Class
Class Test
Public Test1
Public Property Get tValue
tValue = Test1
End Property
Sub Loadit
Test1="123"
End Sub
End Class