本篇文章主要是對調用HttpHanlder的幾種返回方式進行了總結介紹,需要的朋友可以過來參考下,希望對大家有所幫助
1:如果只需要返回字符串形式的 例如內容、JSON字符串數組等 context.Response.Write(resultPrice.ToString()); 2:如要要返回圖片,那麼采用流的形式 bitmap.Save(context.Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg); 3:如果返回文件,例如txt文檔提供給客戶端下載 context.Response.WriteFile("文本實例.txt");