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