下载字节[]时出现异常

时间:2017-04-26 09:45:40

标签: c# asp.net xml

我尝试将byte []转换为xml文件并下载文件,我得到了这个例外:

  

无法评估表达式,因为代码已优化或本机框位于调用堆栈之上。

代码:

Response.Clear();
Response.ContentType = "application/xml";
Response.AddHeader("content-disposition", "attachment;filename=test.xml");
Response.BufferOutput = true;
Response.BinaryWrite(fileData);
Response.End();

有人建议我的代码有什么错误吗?

1 个答案:

答案 0 :(得分:0)

您好,您尝试过以下方法:

<强> C#

http.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir("./static"))))