I will begin with an example code:
Set oClass = New ASPClass
oClass.Property1 = "A"
oClass.Property2 = "B"
Call oClass.Do(1)
Set oClass = Nothing
When we are calling a custom ASP class we get an error. The error is everytime a not found method or property, but NEVER THE SAME one!!! Almost every call on the above script will bring back another error. Sometimes on line 2, sometime line 3, other times line 4. The class is initialized correctly, but on all custom classes there will be an method or property not found error!?
How can we solve this problem?