Microsoft VBScript runtime (0x800A01F9) Invalid or unqualified reference |
This is usually due to using shorthand syntax (which is usually found inside a
With...End With construct) outside of a With ... End With block, e.g.:
<% set fso = CreateObject("Scripting.FileSystemObject") .deleteFile("c:\foo.txt") set fso = nothing %> |
Should be
<% set fso = CreateObject("Scripting.FileSystemObject") fso.deleteFile("c:\foo.txt") set fso = nothing %> |
or
<% set fso = CreateObject("Scripting.FileSystemObject") With fso .deleteFile("c:\foo.txt") End With set fso = nothing %> |
Check if you have any method or properties that start with a dot (search the code for " ." without the quotes).