<160;output
DWT:

Tridion Rich Text Field DWT output for "?"

The value of the text field is Rich <div> <160; </div>

output <div> </div>

DWT:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
@@Component.Fields.Text@@
</html>

what did I miss?

thank

+5
source share
1 answer

I cannot try this due to lack of time, but several things come to mind:

  • What is the encoding set in your publication targeted?
  • Do you get the same result in Template Builder and Preview?
  • If you open a published file in a text editor such as Notepad ++, what does it show?

EDIT

In the preview, I get the following:

<div> </div>

After publishing, I get the same thing as you:

<div>?</div>

, "Unicode (UTF-8)" "System Default", , , :

<div> </div>

Elena 7 , , web.config:

<globalization fileEncoding="UTF-8" requestEncoding="UTF-8" responseEncoding="UTF-8"/>

, - . , ".html". , .aspx, , F5 magic, div :

<div> </div>

EDIT 2 .html, <head> :

<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
+4

All Articles