Wrox Programmer Forums
Go Back   Wrox Programmer Forums > ASP.NET and ASP > ASP.NET 2.0 > ASP.NET 2.0 Professional
|
ASP.NET 2.0 Professional If you are an experienced ASP.NET programmer, this is the forum for your 2.0 questions. Please also see the Visual Web Developer 2005 forum.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 2.0 Professional section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old July 25th, 2007, 03:05 AM
Authorized User
 
Join Date: Jul 2007
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
Default How To Display Image from SQL Server ?


 Hi ,

 I'm trying to call an image from sql server. How can I do it with out using a dataggrid or a gridview. I want to display one image at a time upon a button click.

 The image should also refer to an id given by a textbox. Anyone can help me ??

 
Old July 25th, 2007, 05:02 AM
Authorized User
 
Join Date: Apr 2006
Posts: 79
Thanks: 1
Thanked 0 Times in 0 Posts
Send a message via AIM to anujrathi Send a message via MSN to anujrathi Send a message via Yahoo to anujrathi
Default

Hi,
if u are using datareader to read database record then u can use this code,

(byte[])(mSqlDataReader["ColumnName"].Equals(System.DBNull.Value) ? null : mSqlDataReader["ColumnName"])

Now u hav a byte array containg your image data.

byte[] bytView = AboveByteArray;
MemoryStream imgStreamView = new MemoryStream();
imgStreamView.Write(bytView, 0, bytView.Length);
System.Drawing.Bitmap bmpView = new System.Drawing.Bitmap(imgStreamView);
context.Response.ContentType = "image/jpeg";
bmpView.Save(context.Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg);
imgStreamView.Close();

I hope this code will be usefull.
Regards,
Anuj rathi
 
Old July 25th, 2007, 10:59 PM
Authorized User
 
Join Date: Jul 2007
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Thanx for the help Anuj rathi , I'll try to do it first

 
Old July 30th, 2007, 02:58 AM
Authorized User
 
Join Date: Jul 2007
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Dear anujrathi ..

I've tried your solution to the problem, but it didn't work . Maybe there's some mistake in my part on putting the codes at the wrong place. So .. to confirm , where should the codes go ? and also , your codes does not specify any database or connection to any event upon displaying the image.

There's a solution in the internet : http://www.sqlteam.com/article/images-and-sql-server

that provide the similar solution .. Thank you for your time.

Regards,

-kutel-






Similar Threads
Thread Thread Starter Forum Replies Last Post
Display XML from SQL SERVER toddw607 SQL Server 2000 0 May 31st, 2007 08:29 AM
how to display reports in sql server brahma_ramesh SQL Server 2000 4 July 29th, 2004 03:39 AM
Uploading Image into SQL Server sankar General .NET 0 June 16th, 2004 02:06 AM
display image over the server... cici Classic ASP Professional 0 May 15th, 2004 08:38 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.