View Single Post
  #2 (permalink)  
Old 03-04-10, 10:33
SoftwareMatters SoftwareMatters is offline
Registered User
 
Join Date: Mar 2009
Location: Dorset
Posts: 78
I know that ASP doesn't like those characters as it interferes with the code. I would do a find and replace in your access db to get rid of them (replace with one of these `) and then try your pages.

Also for future your asp pages should use the find replace function i.e.
<%

sMyString = "they're"
sMyString = Replace(sMyString, "'", "`")

Response.Write sMyString = they`re

%>
__________________
Regards
JD

Bespoke Access Database Design and Development Services
Software Matters - Simple Solutions That Work!
Reply With Quote