My question is in two parts
1) I want to assign a file name to FileUpload Control and then save it, but the problem is that it is read-only
FileUpload1.FileName="ClientMachine\\Image1.jpeg"; FileUpload.SaveAs(ServerMachine\\Image1.jpeg);
Is there another way?
OR
2) I have the full path to a single image on the client machine. I want to download this image.
I searched on google, but most of the question does this with ajax, javascript, multipart-form. I do not have such knowledge. Can I do this exclusively with C #.
source share