我尝试将byte []转换为xml文件并下载文件,我得到了这个例外:
无法评估表达式,因为代码已优化或本机框位于调用堆栈之上。
代码:
Response.Clear();
Response.ContentType = "application/xml";
Response.AddHeader("content-disposition", "attachment;filename=test.xml");
Response.BufferOutput = true;
Response.BinaryWrite(fileData);
Response.End();
有人建议我的代码有什么错误吗?
答案 0 :(得分:0)
您好,您尝试过以下方法:
<强> C#强>
http.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir("./static"))))