B
Bill
I've got a hyperlink that unfolds with the following info on it:
response.write "<td><font face=verdana size=1><a
href=v_detail_products.asp?price=" & price _
& "&isbn=" & isbn & ">" & rs("title") & "</a></td>"
The _ following price is where the line ends and wraps to the next
line. This current set up works fine. However, mysteriously, if I try
adding a third variable to this line, called title, it fails to appear
at all, not only the content of the variable, but the hard text it
self, as it it was not even entered. For example:
response.write "<td><font face=verdana size=1><a
href=v_detail_products.asp?price=" & price _
& "&isbn=" & isbn & "&title=" & rs("title") & ">" & rs("title") &
"</a></td>"
Not only will the contents of rs("title") not appear, but the string
"&title" will not appear in the hyperlink, as if the word title was
not being recognized for some reason. Can someone answer this mystery
for me?
Thanks,
Bill
response.write "<td><font face=verdana size=1><a
href=v_detail_products.asp?price=" & price _
& "&isbn=" & isbn & ">" & rs("title") & "</a></td>"
The _ following price is where the line ends and wraps to the next
line. This current set up works fine. However, mysteriously, if I try
adding a third variable to this line, called title, it fails to appear
at all, not only the content of the variable, but the hard text it
self, as it it was not even entered. For example:
response.write "<td><font face=verdana size=1><a
href=v_detail_products.asp?price=" & price _
& "&isbn=" & isbn & "&title=" & rs("title") & ">" & rs("title") &
"</a></td>"
Not only will the contents of rs("title") not appear, but the string
"&title" will not appear in the hyperlink, as if the word title was
not being recognized for some reason. Can someone answer this mystery
for me?
Thanks,
Bill