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