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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

HOW MANY QUOTES 1

Status
Not open for further replies.

gc1234

Programmer
Mar 4, 2004
94
0
0
GB
Hi

Next is lit up as though reserved word, can anyone spot why my quotes are doing what they should

response.write "<a href=""pt_listcategoriesandproducts.asp?idCategory=" &pIdCategory& "&curPage="& curPage + 1 & "" title=""Next""><img src=""images/previous.gif"" border=0></a>
 
I think you have missed an extra quotation mark:
Code:
response.write "<a href=""pt_listcategoriesandproducts.asp?idCategory=" &pIdCategory& "&curPage="& curPage + 1 & [COLOR=red]"[/color]"" title=""Next""><img src=""images/previous.gif"" border=0></a>"

------------------------------------------------------------------------------------------------------------------------
"The major difference between a thing that might go wrong and a thing that cannot possibly go wrong is that when a thing that cannot possibly go wrong goes wrong it usually turns out to be impossible to get at or repair."
--Dou
 
No problem! :)

------------------------------------------------------------------------------------------------------------------------
"The major difference between a thing that might go wrong and a thing that cannot possibly go wrong is that when a thing that cannot possibly go wrong goes wrong it usually turns out to be impossible to get at or repair."
--Dou
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top