ObjectiveIn this article, I am going to show you How to insert an
image from ASP.Net application to SQL Server using LINQ to SQL and how to
retrieve image from SQL Server data base using LINQ to SQL and display to an
Image control.
Block Diagram of solution 
Description
of tableFor my purpose, I have created a table called
ImageTable.

- Id is primary key.
- Name column will contain name of the image file.
- FileSource column will contain binary of image. Type of this column is
image.
Create ASP.Net Web Application Open visual studio
and from File menu select New Project and then from Web tab select new web
application. Give meaningful name to your web application.
Create
DBML file using LINQ to SQL class.For detail description on how to
use LINQ to SQL class read
HERE
- Right click on the project and select add new item.
- From DATA tab select LINQ to SQL Class.
- On design surface select server explorer.
- In server explorer and add new connection.
- Give database server name and select database.
- Dragged the table on the design surface.
Once all the steps done,
you will have a
dbml file created.
Design the page
- I have dragged one FileUpload control and a button for upload purpose.
- One text box. In this text box user will enter Id of the image to be
fetched.
- One button to fetch the image from database.
- One Image control to display image from database.
Default.aspx 
Code View of the above Image
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
<asp:FileUpload ID="FileUpload1" runat="server" Width="251px" />
<asp:Button ID="Button1" runat="server" Text="Upload" onclick="Button1_Click"
style="margin-left: 0px" />
<asp:TextBox ID="TextBox1" runat="server" Width="164px"
Text=" " ontextchanged="TextBox1_TextChanged"></asp:TextBox>
<asp:Button ID="Button2" runat="server" Text="Show" onclick="Button2_Click"
Width="102px" />
<br />
<asp:Image ID="Image1" runat="server" Width="570px" />
</asp:Content>Saving
image in tableOn click event of Button 1 Image upload will be done.

Code view of the above image
protected void Button1_Click(object sender, EventArgs e)
{
if (FileUpload1.HasFile && FileUpload1.PostedFile.ContentLength > 0)
{
string fileName = FileUpload1.FileName;
byte[] fileByte = FileUpload1.FileBytes;
Binary binaryObj = new Binary(fileByte);
DataClasses1DataContext context = new DataClasses1DataContext();
context.ImageTables.InsertOnSubmit(
new ImageTable { Id = "xyz",
Name = fileName,
FileSource = binaryObj });
context.SubmitChanges();
}
}In
this code
- First checking whether FileUplad control contains file or not.
- Saving the file name in a string variable.
- Reading file content in Byte array.
- Then converting Byte array in Binary Object.
- Creating instance of data context class.
- Creating instance of ImageTable class using object initializer. Passing Id
as hard coded value. Name as file name and FileSource as binary
object.
Retrieving Image from tableOn click event of
button2 Image will be fetched of a particular Id. Image Id will be given by user
in text box.

Codeview of the above image
protected void Button2_Click(object sender, EventArgs e)
{
Image1.ImageUrl = "~/MyPhoto.ashx?Id="+TextBox1.Text;
}In
above code, I am calling a generic HTTP handler. As query string value from
textbox1 is appended to the URL of HTTP handler. To add HTTP handler, right
click on project and add new item. Then select generic handler from web tab.

Code View of the above Image
public void ProcessRequest(HttpContext context)
{
string id = context.Request.QueryString["Id"];
context.Response.ContentType = "image/jpeg";
Stream strm = ShowEmpImage(id);
byte[] buffer = new byte[4096];
int byteSeq = strm.Read(buffer, 0, 4096);
while (byteSeq > 0)
{
context.Response.OutputStream.Write(buffer, 0, byteSeq);
byteSeq = strm.Read(buffer, 0, 4096);
}
}
public Stream ShowEmpImage(string id)
{
DataClasses1DataContext context1 = new DataClasses1DataContext();
var r = (from a in context1.ImageTables where a.Id == id select a).First();
return new MemoryStream(r.FileSource.ToArray());
}In
above code,
- Reading query string in a variable.
- Calling a function returning ShowEmpImage returning Stream.
- In ShowEmpImage , creating object DataContext class .
- Using LINQ fetching a particular raw from table of a particular ID.
- Converting image column in memory stream. In this case FileSource column is
containing image.
- Converting stream into byte array.
- Reading byte array in series of integer.
- Using Output stream writing the integer sequence.
Running
application 


For
your reference Source code is given as
below
Default.aspx.csusing System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.Linq;
using System.IO;
namespace uploadingImageusingLInqtoSQl
{
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
if (FileUpload1.HasFile && FileUpload1.PostedFile.ContentLength > 0)
{
string fileName = FileUpload1.FileName;
byte[] fileByte = FileUpload1.FileBytes;
Binary binaryObj = new Binary(fileByte);
DataClasses1DataContext context = new DataClasses1DataContext();
context.ImageTables.InsertOnSubmit(
new ImageTable { Id = "xyz",
Name = fileName,
FileSource = binaryObj });
context.SubmitChanges();
}
}
protected void Button2_Click(object sender, EventArgs e)
{
Image1.ImageUrl = "~/MyPhoto.ashx?Id="+TextBox1.Text;
}
}
}MyPhto.ashx.csusing System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.IO;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace uploadingImageusingLInqtoSQl
{
/// <summary>
/// Summary description for MyPhoto
/// </summary>
public class MyPhoto : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
string id = context.Request.QueryString["Id"];
context.Response.ContentType = "image/jpeg";
Stream strm = ShowEmpImage(id);
byte[] buffer = new byte[4096];
int byteSeq = strm.Read(buffer, 0, 4096);
while (byteSeq > 0)
{
context.Response.OutputStream.Write(buffer, 0, byteSeq);
byteSeq = strm.Read(buffer, 0, 4096);
}
}
public Stream ShowEmpImage(string id)
{
DataClasses1DataContext context1 = new DataClasses1DataContext();
var r = (from a in context1.ImageTables where a.Id == id select a).First();
return new MemoryStream(r.FileSource.ToArray());
}
public bool IsReusable
{
get
{
return false;
}
}
}
}You can also download the sample project used the above example
I hope
this post is useful. Thanks for reading. Happy Coding.