我有一個自定義處理程序(ImageHandler.ashx),在瀏覽時可以正常工作。它在服務器上找到一個zip文件,解壓縮並將位圖保存到OutputStream中。當我嘗試使用ashx使用jQuery加載時,我的png內容會以編碼,亂碼字符的形式返回,而不是顯示圖像。使用jQuery加載自定義http處理程序ashx文件來顯示png
Bitmap convertedImg = new Bitmap(zInStream);
convertedImg.Save(context.Response.OutputStream, ImageFormat.Png);
向我們展示您的jQuery代碼 – andynormancx 2011-04-18 17:17:47