When extension is .aspx, Korean language does not display

Discussion in 'ASP.NET 2.0' started by doctorgu, Jun 29, 2007.

  1. I have two test pages in root folder.
    /default.aspx, /default.htm

    two source is exactly same.
    default.aspx is not display Korean language well, but default.htm is display well.

    I changed responseEncoding to "euc-kr" in web.config.
    I don't know why.
    By searching this forum, I guessed discountasp.net has no asian people.
    So problem seems not important for everyone except me.
     
  2.  
  3. Can you provide me with a url of both the pages ?Just wanted to see what exactly do you mean by 'not display Korean language well'?

    Vikram

    DiscountASP.NET
    www.DiscountASP.NET
     
  4. It is important to understand that the .NET framework uses unicode internally. If the original characters were encoded as something else, then they will probably not map correctly to the unicode character set.

    In Visual Studio, try doing a "Save As" with UTF-8 encoding. The Save button will have a little arrow so you can select the option "Save with Encoding".


    Aristotle

    DiscountASP.NET
    www.DiscountASP.NET
     
  5. Thank you, problem solved.


    It displays well aftersaved as "Unicode(UTF-8 with signature)".


    Thank you very much

     

Share This Page