I need to save file via C# in asp.net from the given path
FileUpload fileToUpload =new FileUpload();
string path = "http://maps.googleapis.com/maps/api/staticmap?center=34.08326024943277,74.79841209948063&zoom=21&size=550x450&maptype=roadmap&sensor=true";
string FileName = "mirImg" + Guid.NewGuid().ToString();
fileToUpload.SaveAs("~/saveImages/" + FileName);