开发者

Encoding a character

I am experiencing some weird encoding behaviour in my ASP.NET MVC project.

In my Site.Master there is

<div class="logo">
        <a href="<%=Url.Action("Index", "Win7")%>"><%= Html.Encode("Windows 7 Tutoriál") %></a></div>

which translates to the resulting page 开发者_StackOverflow社区as

<div class="logo">
        <a href="/">Windows 7 Tutoriál</a></div>

However, in the Index.aspx there is

<h1>
    Windows 7 Tutoriál</h1>

which translates correctly on the same resulting page. I do have

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

as my first line in <head>. Locally, both files are saved in UTF-8 encoding.

Any ideas why is this happening and how to fix it?

Thanks in advance.


Ehm, I just found out, that both files are indeed in UTF-8, however, one of the was using version with signature while the other was without. I wonder when VS decided to change these. Thanks to commentators anyway.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜