DropDownList没有正确显示元音

时间:2015-03-20 15:33:25

标签: c# asp.net unicode

我有点难过为什么当我手动设置DropDownList的ListItem时:

li.Text = "- Auswählen -";

它显示如下: enter image description here

HTML的元标记有charset =" utf-8",所以我有点困惑。

1 个答案:

答案 0 :(得分:0)

请尝试在Global.asax文件中添加以下行,然后检查。

protected void Application_BeginRequest(object sender, EventArgs e)
{
     if(Request.RequestContext.HttpContext.Request.ContentType.Equals("text/xml"))
     {
          Request.RequestContext.HttpContext.Request.ContentType = "text/xml; charset=UTF-8";
     }
}