This tutorial is to guide you to save/retrieve image using C# in ASP.Net Web
The saving image process is same as the windows form saving image process. You can get detail on my other tutorial which i wrote earlier which guide you to save/retrieve image in Windows Forms. You can read that tutorial from Click Here
For you ease i will copy past the code to show you how you save image in SQL server using C#.
1. First of all we need a database in SQL Server which contains a table with only two columns one is 'id' of type 'int' and second is of 'image' of type 'image'.
2. Open SQL Server 2005 Express Management Studio and create new database. Name it according to your choice.
3. After successfully creating database create a table with two columns described in step 1.
4. Now Open Visual Studio...