我使用這個寫入響應流:ASP.NET:BOM中使用Server.Execute()
using (var writer = new StringWriter())
{
context.Server.Execute(virtualpath, writer);
string s = writer.ToString().Replace(...);
context.Response.Write(s);
}
但我的迴應得到一個字節順序標記。我搞砸了編碼?如何不返回BOM?
編輯:SOrry魯本斯,我的第一個例子是不正確的。