- Forums
- Windows Hosting
- Microsoft Vbscript Runtime Error '800a01a8'
Im Getting An Error On My Asp Page Script That I Am Creating And It Showing This Error Message I Don Tknow What To Do [1594], Last Updated: Mon Jun 24, 2024
Farlon
Tue Dec 08, 2009
0 Comments
498 Visits
hi, i just started creating .asp pages on my windows 2008 server, when i run my script on my browser it says:
microsoft VBScript runtime error '800a01a8'
Object required: '[string: "Link: "]"
/Default.asp, line 6
and this is how line 6 looks like:
response.write("Link: " . request.querystring("link"))
ok, if you are also getting this error, my problem was the dot, i am so used to programming in php that i thot i could connect it by using the dot, but instead in asp i have to use the & sign so line 6 should look like this:
response.write("Link: " & request.querystring("link"))