Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

One aspx page to have utf-8 encoding

What should I do to change one aspx page to have utf-8 encoding?

my web.config has the following code:

<system.web>
  <globalization
     requestEncoding="utf-8"
     responseEncoding="utf-8"/>
</system.web>

Tried this:

meta http-equiv="Content-Type" content="text/html; charset=UTF-8" 

doesn't work.

like image 863
Linta Sheelkumar Avatar asked Oct 22 '15 14:10

Linta Sheelkumar


2 Answers

Try this;

<configuration>
 <system.web>
  <globalization
    fileEncoding="utf-8" 
    requestEncoding="utf-8" 
    responseEncoding="utf-8"
    culture="en-US"
    uiCulture="de-DE"
   />
 </system.web>
</configuration>

To set the encoding for an individual page, set the RequestEncoding and ResponseEncoding attributes of the @ Page directive:

<%@ Page RequestEncoding="utf-8" ResponseEncoding="utf-8" %>

Or you can use location like this:

<location path="home.aspx">
    <system.web>
        <globalization requestEncoding="utf-8" responseEncoding="utf-8" />
    </system.web>
</location>

Read more: How to: Select an Encoding for ASP.NET Web Page Globalization.

like image 90
Salah Akbari Avatar answered Sep 21 '22 04:09

Salah Akbari


Try to insert

Response.ContentEncoding = System.Text.Encoding.UTF8;

In your Page_Load if you want to do it dynamically.

like image 31
masinger Avatar answered Sep 22 '22 04:09

masinger