Kiran Solkar
Kiran Solkar

Reputation: 1220

How to save Image Control Image in Folder in Asp.net

I know how to save an image to a folder using the fileupload control with the saveas method. But I to take an image from the image control and save it to a file without using the fileupload control n save it in folder.

Upvotes: 2

Views: 12240

Answers (3)

Kiran Solkar
Kiran Solkar

Reputation: 1220

string filepath = img1.ImageUrl;           
using (WebClient client = new WebClient())
{
       client.DownloadFile(filepath,Server.MapPath("~/Image/apple.jpg"));
}

Upvotes: 2

Kartik Patel
Kartik Patel

Reputation: 9603

First Get the Url of Image and then using webclient you can save file in folder

string filepath = img1.ImageUrl;           
using (WebClient client = new WebClient())
{
       client.DownloadFile(filepath,Server.MapPath("~/Image/apple.jpg"));
}

This will save image in Image Folder with ImageName apple...

Upvotes: 1

fenix2222
fenix2222

Reputation: 4730

Do you know image path? you can get image path from image control and then download image in code:

Download image from the site in .NET/C#

using(WebClient client = new WebClient()) 
{
    client.DownloadFile("http://www.example.com/image.jpg", localFilename); 
} 

Upvotes: 1

Related Questions