- Forums
- Windows Hosting
- Microsoft Vbscript Compilation Error '800a03f2'
Running A Script In Asp Iis Microsoft Windows 2003 Server On My Script I Get This Message On My Browser [1595], Last Updated: Mon Jun 24, 2024
Jarish
Tue Dec 08, 2009
0 Comments
593 Visits
this is what my error says:
microsoft VBScript compilation error '800a03f2'
expected indentifier
/default.asp line 6
this is how line 6 looks like:
response.write("Link: ". & request.querystring("link"))
how to solve this problem: i had to remove the dot i had included in line 6, i am so used to programming in php that i must have put i there to connect both executions so i changed line 6 to look like this instead and it worked, not getting the error no more:
response.write("Link: " & request.querystring("link"))