Hi, my asp.net Script returns WML pages for WAP devices. In the page_load, I build a string like
string myString = "Hello this string contains German umlauts here: äöüäö ... and so on...";
Then I contruct a simple WML around that and return all it to the client by calling Response.Write:
string sResponse = "
";
sResponse += myString; // Insert our string with the umlauts
sResponse += "
";
This works, but the umlauts are not displayed correctly in the WAP browsers, only mystic characters... I played a bit with Response.ContentEncoding & Response.Charset
but haven't found a working solution. If I put the above WML code into a static .wml file, the umlauts are displayed perfectly. Anybody help? Thanks a lot. Felix
bmw_research
Member
5 Points
1 Post
Help needed: German umlaut when using Respose.Write
Sep 26, 2003 11:40 AM|LINK