Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

my link

Status
Not open for further replies.

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
 
There is a problem with the quotes.
 
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?
 
how about this:

Response.Write "<a href='file.asp?ID=' & rs("ID")>"

-DNG
 
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") & "'>"
 
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top