Mar 13, 2006 #1 playerx Technical User Joined Feb 23, 2006 Messages 10 Location US My link is not working properly is my syntax correct? Response.Write "<a href=""file.asp?ID=" & rs("ID") & """>" any help would be appreciated
My link is not working properly is my syntax correct? Response.Write "<a href=""file.asp?ID=" & rs("ID") & """>" any help would be appreciated
Mar 13, 2006 #2 Sheco Programmer Joined Jan 3, 2005 Messages 5,457 Location US There is a problem with the quotes. Upvote 0 Downvote
Mar 13, 2006 #3 Sheco Programmer Joined Jan 3, 2005 Messages 5,457 Location US oh, nevermind, I cant count. Use "View Source" on the page to see what HTML was sent to the browser... perhaps your ado field is empty? Upvote 0 Downvote
oh, nevermind, I cant count. Use "View Source" on the page to see what HTML was sent to the browser... perhaps your ado field is empty?
Mar 13, 2006 #4 DotNetGnat Programmer Joined Mar 10, 2005 Messages 5,548 Location IN how about this: Response.Write "<a href='file.asp?ID=' & rs("ID")>" -DNG Upvote 0 Downvote
Mar 13, 2006 #5 Sheco Programmer Joined Jan 3, 2005 Messages 5,457 Location US uh.. Upvote 0 Downvote
Mar 13, 2006 #6 Sheco Programmer Joined Jan 3, 2005 Messages 5,457 Location US OK on using the single quote instead of escaping the double quote but more like this: Response.Write "<a href='file.asp?ID=" & rs("ID") & "'>" Upvote 0 Downvote
OK on using the single quote instead of escaping the double quote but more like this: Response.Write "<a href='file.asp?ID=" & rs("ID") & "'>"
Mar 13, 2006 #7 DotNetGnat Programmer Joined Mar 10, 2005 Messages 5,548 Location IN oops..how did i miss that...Sheco is correct... i was thinking about this one too... Response.Write "<a href='file.asp?ID=" & rs("ID") & "'>" -DNG Upvote 0 Downvote
oops..how did i miss that...Sheco is correct... i was thinking about this one too... Response.Write "<a href='file.asp?ID=" & rs("ID") & "'>" -DNG