Hi,
I found a special character in my database table which gives my asp page an error when loading. It's a black colour box at the end of my string.
I'm not sure how the user key in the character, but my guess is that it's a carriage return. So, i try to get rid of it by doing this :
<code>
FARM=Replace(Trim(objRS("farm")),chr(13)," ")
</code>
It doesn't help.
This html line still gives me an "Unterminated String Constraint" error :
<code>
document.form1.farm.value = 'CRT ( A68LZU185 ),
';
</code>
Please help. Thanks.
I found a special character in my database table which gives my asp page an error when loading. It's a black colour box at the end of my string.
I'm not sure how the user key in the character, but my guess is that it's a carriage return. So, i try to get rid of it by doing this :
<code>
FARM=Replace(Trim(objRS("farm")),chr(13)," ")
</code>
It doesn't help.
This html line still gives me an "Unterminated String Constraint" error :
<code>
document.form1.farm.value = 'CRT ( A68LZU185 ),
';
</code>
Please help. Thanks.