Showing posts with label image Upload. Show all posts
Showing posts with label image Upload. Show all posts

Saturday, January 30, 2010

Image uploading in Asp.net



Image uploading using Asp.net to MS sql server by c# is very easier.Here i will show how to convert an image to binary data and reduce the image size and then upload the binary data to MS sql server.

Create the Database structure

In the database we have to declare the image id, image name and image binary data.

name type
imageId int identity not null

Followers