我设计了这样的布局视图页面,
<!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ürü"/>
答案 0 :(得分:0)
你有3种不同的字符集META标签,这绝对没有意义。
否则META“description”看起来很好 - 包含“sü;rü”字符串的正确编码值。
答案 1 :(得分:0)
像这样使用@HTML.Raw(...)
:
<title>@Html.Raw(ViewData["Title"])</title>