我正在尝试从 wcf 服务提供一个 csv 文件,作为字符串响应。
它看起来像这样:
HttpContext.Current.Response.AddHeader("Content-disposition", "attachment; filename=ImportErrors.csv");
HttpContext.Current.Response.ContentType = "text/csv";
HttpContext.Current.Response.Write(myCsvContent);
响应 StatusCode 设置为 (int)HttpStatusCode.OK (200)
它可以工作,但我只得到 88 个字节的 csv,其余部分被截断(未显示)。
关于在哪里看的任何建议?我在 web.config 中没有看到任何设置限制的自定义条目。