I'm no 'proper' coder, so apologies if this isn't correct, but should it be the following - looks to be missing an '&' sign;
<%response.write "<item>" response.write "<title>"& artist(x) & " - " & title(x) & " (" & label(x) & ") £" & formatnumber(price(x)) &"</title>" response.write "<link> http://www.firstrhythm.co.uk/productpage.asp?category="&cat_ID(x) & "&productdetail=" & ID(x) & "</link>" response.write "<description>"& desc(x)& " - " & " (" & page(x) & ")" & "</description>" response.write "</item>" NEXT%> |
Also, not sure it matters, but the spaces aren't consistant between;
"&cat_ID(x) & "
and
" & ID(x) & "
I'd write it as;
<%response.write "<item>" response.write "<title>"& artist(x) & " - " & title(x) & " (" & label(x) & ") £" & formatnumber(price(x)) &"</title>" response.write "<link> http://www.firstrhythm.co.uk/productpage.asp?category=" & cat_ID(x) & "&productdetail=" & ID(x) & "</link>" response.write "<description>"& desc(x)& " - " & " (" & page(x) & ")" & "</description>" response.write "</item>" NEXT%> |