1:如果只需要返回字符串形式的 例如內容、JSON字符串數組等
context.Response.Write(resultPrice.ToString());
2:如要要返回圖片,那麼采用流的形式
bitmap.Save(context.Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg);
3:如果返回文件,例如txt文檔提供給客戶端下載
context.Response.WriteFile("文本實例.txt");