B
Bob Barrows
GTN170777 said:url =
"http://www.hampshirejobsonline.co.uk/jobseeker/afterregistration/vacancynotification.asp?ID="
& (VACANCY.Fields.Item("JBAID").Value) & "")
What is the point of the apostrophe you are concatenating at the end there?
Values in url querystrings should not and cannot be delimited. For that
matter, what is the point in the parentheses around the value being
concatenated? This should be all that is needed:
url = "http......?ID=" & VACANCY.Fields.Item("JBAID").Value
Use response.write to verify this variable contains what you need to to
contain.