所以我有這個代碼,即時嘗試返回現有的圖片。雖然它不會顯示。 Chrome說服務器意外地關閉了連接,firefox說immage中有一個錯誤。標題返回圖像
這是代碼;
System.Text.ASCIIEncoding enc = new System.Text.ASCIIEncoding();
byte[] img = enc.GetBytes(response);
Response.AddHeader("Transfer-Encoding", "Chunked");
Response.AddHeader("Connection", "Keep-Alive");
Response.AddHeader("Keep-Alive", "timeout=1, max=64");
Response.BinaryWrite(img);
var content = fileStorage.readFile(src); // this is the file. Which is return in response
//編輯我無法發佈圖片。
響應對象究竟是什麼?我無法在.NET API中找到小寫的readFile。有沒有另一種方法可以將它轉換爲字節?我期望'ASCIIEncoding.GetBytes()'是問題所在。 – Rup 2011-12-19 10:51:13