amespaces required
- using System.Data.OleDb;
OleDb is used to connect the web site forms with MS Access Database using Microsoft.Jet.OLEDB.4.0
- using System.IO;
IO is used to create the memory stream variable that can store the binary format of the image content.
C# Code to Upload Image to MS Access Database
- int imageSize;
- string imageType;
- Stream imageStream;
- // Gets the Size of the Image
- imageSize = fileImgUpload.PostedFile.ContentLength;
- // Gets the Image Type
- imageType = fileImgUpload.PostedFile.ContentType;
- // Reads the Image stream
- imageStream = fileImgUpload.PostedFile.InputStream;
- byte[] imageContent = newbyte[imageSize]; int intStatus;
- intStatus = imageStream.Read(imageContent, 0, imageSize);
Connection string to connect the ASP.Net 2.0 web application with MS Access Database:
- // Access Database oledb connection string
- // Using Provider Microsoft.Jet.OLEDB.4.0
- String connStr = "Provider=Microsoft.Jet.OL
No comments:
Post a Comment