|
|
|
ต้องการดึง file document ขึ้นมาจาก DB ครับ เป็นดรสำ binary อ่ะครับ |
|
|
|
|
|
|
|
Code (VB.NET)
connection.Open();
SqlCommand command1 = new SqlCommand("select imgfile from myimages where imgname=@param", connection);
SqlParameter myparam = command1.Parameters.Add("@param", SqlDbType.NVarChar, 30);
myparam.Value = txtimgname.Text;
byte[] img = (byte[])command1.ExecuteScalar();
MemoryStream str = new MemoryStream();
str.Write(img, 0, img.Length);
Bitmap bit = new Bitmap(str);
Response.ContentType = "image/jpeg";
bit.Save(Response.OutputStream, ImageFormat.Jpeg);
connection.Close();
Go to : VB.NET สอบถามวิธีการดึงรูปภาพที่บันทึกไว้(เป็น Binary data)ในฐานข้อมูลเอามาแสดงใน PictureBox ครับ
อันนี้เป็น VB.NET แต่แปลงเป็น C# ได้ไม่ยากครับ มันมีเว็บไซต์ไว้สำหรับแปลงอยู่ครับ ลองค้นหา "Convert VB.NET to C#"
|
|
|
|
|
Date :
2012-05-05 07:42:28 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|