On a server running IIS6, vbscript/class asp code such as this works fine:
Set myVar = Nothing
I think it should error, as the variable is not Dim correctly and we are using <%Option Explicit%>. But it doesn't error.
However running exactly the same code on local IIS5.1 (with visual studio installed), throws an error (which it should).
I'm not too worried about the error itself (I think it should be erroring), but is there a reason why it would error on II5.1. rather than IIS6?
This still occurs when I turn off server-side/client-side debugging on the localhost.