asp.net mvc元描述字符问题

时间:2012-07-03 08:35:46

标签: character-encoding meta

我设计了这样的布局视图页面,

<!DOCTYPE html>
<html lang="tr">
<head>
   1 <META http-equiv=content-type content=text/html;charset=windows-1254>
   2 <META http-equiv=content-type content=text/html;charset=utf-8>
   3 <META http-equiv=content-type content=text/html;charset=iso-8859-9>
    <title>@ViewBag.Title</title>
    <meta name="description" content="@ViewBag.Description"/>

当运行应用程序并查看borwser源时,一些caharecters看起来无效,如下所示。

<meta name="description" content="s&#252;r&#252;"/>

2 个答案:

答案 0 :(得分:0)

你有3种不同的字符集META标签,这绝对没有意义。

否则META“description”看起来很好 - 包含“sü;rü”字符串的正确编码值。

答案 1 :(得分:0)

像这样使用@HTML.Raw(...)

<title>@Html.Raw(ViewData["Title"])</title>