7
Answers

Select Files from Open Dialog and SaveAs to Application

Ajay Saini

Ajay Saini

9y
471
1
Hi,
I have an Windows Form based application. My requirement is to select some Text files from the machine where this application is installed and SaveAs all the files into my Application directory for future references (not required to choose location by user). It is just like in ASP.NET to upload your photo/sign to web server.

Is it a way in Windows Form Based application?
Answers (7)
0
spgilmore

spgilmore

NA 591 0 20y
What for? Why not just use an httprequest to download it directly from the server? If you have to do this, you can always base-64 encode the file and send it as a string in a webservice. I belive that .NET webservices support DIME, which is smaller and has other benefits, but I don't know anything about it.