如何让我的 C# 代码识别“ö”?
查询的输出很好并且格式化了所有特殊字符都是可见的,但是在代码隐藏中,我不能使用它们进行排序。
例子:
if (link.Contains("teborg"))
{
CountRss++;
Response.Write("<p class='RssCont'><a href='" + link + "' target='new'><b>" + title + "</b></a><br/>");
Response.Write(description + "</p>");
}
将给出几个标题为“Göteborg”的结果,但是:
if (link.Contains("Göteborg"))
{
CountRss++;
Response.Write("<p class='RssCont'><a href='" + link + "' target='new'><b>" + title + "</b></a><br/>");
Response.Write(description + "</p>");
}
根本不会给出任何结果。