how to save file using c# and hosting service inside "images" folder
i already tried code.Paint().Save("c:\image.png", ImageFormat.Png); and suceeded, but only at my local computer, after i uploading to some hosting account ( godaddy ) its not working i already tried @"images\image.png" and ..\images\image.png and ~\images\image.png and the error is A generic error occurred in GDI+.
FileStream fs = new System.IO.FileStream(@"images\image.png", FileMode.Create, FileAccess.ReadWrite);
and still cannot, is that possible to dynamically add file to a hosting? and after I save it, how to open it if I'm using picture box? thanks