我想的byte []轉換爲XML文件,下載文件,我得到這個異常:異常而下載的byte []
無法因爲代碼優化或本機框架上,以評估表達調用堆棧的頂部。
代碼:
Response.Clear();
Response.ContentType = "application/xml";
Response.AddHeader("content-disposition", "attachment;filename=test.xml");
Response.BufferOutput = true;
Response.BinaryWrite(fileData);
Response.End();
任何一個建議我的代碼有什麼過錯?
你看到的是不實際的異常。這就是你所看到的,因爲(因爲它說)調試器是*「無法評估表達式,因爲代碼被優化或本地框架在調用堆棧之上。」*這基本上意味着*「我不能說你的實際價值,因爲我不能訪問它。「* –