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"))