程序代码
代码如下 | 复制代码 |
|
代码如下 | 复制代码 |
return Content(str, "text/xml", Encoding.UTF8);
|
代码如下 | 复制代码 |
return Content(str, "text/xml", new UTF8Encoding(true));
|
代码如下 | 复制代码 |
Response.Write(Encoding.UTF8.GetString(new byte[] { 0xEF, 0xBB, 0xBF }));
return Content(str, "text/xml", Encoding.UTF8);
|