I have a normal HTML page FFF.htm that I also moved my web space
<HTML>
<BODY>
<TABLE><TR><TD>
àèìòù
</TD></TR></TABLE>
</BODY>
</HTML>
the lines
displays five strange characters
while the lines
display àèìòù
How To remedy this, I wanted to use the local file?
I should add that I tried to enter several different charset in the HTML page, without success.
charset=iso-8859-1
charset=windows-1252
charset=utf-8
etc etc
I would not be forced to use
à for à
è for è
ì for ì
etc. etc.
Thanks for your attention.
<HTML>
<BODY>
<TABLE><TR><TD>
àèìòù
</TD></TR></TABLE>
</BODY>
</HTML>
the lines
B4X:
FileName = "FFF.htm"
h = ReadTextReader (FileName)
WebView1.LoadHtml (h)
displays five strange characters
while the lines
B4X:
FileName = "FFF.htm"
WebView1.LoadUrl ("http://......../" & FileName)
display àèìòù
How To remedy this, I wanted to use the local file?
I should add that I tried to enter several different charset in the HTML page, without success.
charset=iso-8859-1
charset=windows-1252
charset=utf-8
etc etc
I would not be forced to use
à for à
è for è
ì for ì
etc. etc.
Thanks for your attention.
Last edited: