How I can use UTF-8 characters for menu items?
Try to use the following steps:
- Insert instruction <?xml version="1.0" encoding="utf-8" ?> into your XML Structure File (with UTF-8 characters).
- Save your XML Structure File as UTF-8 (Unicode).
- Put the <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> instruction into the <head> section of your aspx page.
- Add the encoding values to the aspx page directive:
<%@ Page ResponseEncoding="utf-8" RequestEncoding="utf-8" %>
- Use instructions in your Web.config file:
<configuration>
<system.web>
<globalization requestEncoding="utf-8" responseEncoding="utf-8" />
</system.web>
</configuration>