My question have two parts
1) I want to assign filename to FileUpload Control and then save it but the problem is that it is readonly
FileUpload1.FileName="ClientMachine\\Image1.jpeg";
FileUpload.SaveAs(ServerMachine\\Image1.jpeg);
Is there any other way?
OR
2)I have Full path of one image at clients machine. I want to download that image.
I searched on google but most of the question do it using ajax,javascript, multipart-form . i don't have any such knowledge. Can i do it purely using C#.