Archive for the 'Save Images into Access Database' Category

Save Images in Access Database : ASP.NET

Using OLE Object we can save images in Access Database, in this example we will select a image and save that image in Access database using ASP.NET.
First we will start creating a table in access database.
Create a table ImageTable with following fields

ID    AutoNumber (Primary Key)
ImageName   Text
ImageValue OLE Object

Now create a WebApplication [...]