Hi all,
Im adding some anchors to a target page like the following:
<A NAME="anchor1"></a>
Then on the page that points to the page with the above anchor on it ive changed a working link that used to look like this:
<a href="pagewithanchor.cfm?strProdID=#strProdID#">
to this:
<a href="pagewithanchor#anchor1.cfm?strProdID=#strProdID#">
When I try to load the page with the link on it i get the following error on that line of code:
Just in time compilation error
Invalid token found on line 230 at position 49. ColdFusion was looking at the following text:
?
Invalid expression element. The usual cause of this error is a misspelling in the expression text.
I tried using two #'s (to escape the character) but i still got the same error
Im adding some anchors to a target page like the following:
<A NAME="anchor1"></a>
Then on the page that points to the page with the above anchor on it ive changed a working link that used to look like this:
<a href="pagewithanchor.cfm?strProdID=#strProdID#">
to this:
<a href="pagewithanchor#anchor1.cfm?strProdID=#strProdID#">
When I try to load the page with the link on it i get the following error on that line of code:
Just in time compilation error
Invalid token found on line 230 at position 49. ColdFusion was looking at the following text:
?
Invalid expression element. The usual cause of this error is a misspelling in the expression text.
I tried using two #'s (to escape the character) but i still got the same error