画像の画像ボックスに画像を表示するために以下のコードを使用しましたが、データベースから読み取った後にファイルを開くコード(pdf、image、...)を追加します。データベースから画像データを読み込んだ後にファイルを開く方法
int imageID = Convert.ToInt32(imageIDComboBox.Text);
// read image bytes from the database and display in picture box
Byte[] imageByteArray = ProductDB.ReadImage(imageID);
MemoryStream ms = new MemoryStream(imageByteArray);
imagePictureBox.Image = System.Drawing.Image.FromStream(ms);
ms.Close();
私は以下のコードを使用しようとしましたが、レスポンスを認識しません。
ms.writeto(Response.outputstream)
probabbly重複http://stackoverflow.com/questions/8624071/save-and-load-memorystream-to-from-a-file – Mat