I'm trying to display russian text stored in an Access database using ASP. When I use:
I get a bunch of question marks, and when I use:
there is no formating, all HTML tags are displayed as text.
Is there a way to display this text and keep the HTML formatting using ASP?
Code:
Response.Write(r1.Fields("content").value)
Code:
Response.Write(Server.HTMLEncode(r1.Fields("content").value))
Is there a way to display this text and keep the HTML formatting using ASP?