Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to download text file from server on local computer in C# framework 2.0. ?

  • My requiremtnt is to read a text file from server and update data in database - But reading file from server line by line will be much slower so I want to copy text file from server to local machine then I will read it and when reading finished will delete a file from local machine.

Also when a connect to server code is executed system sould ask for username and password (because I can not hard code doman\username and password in code - server may change)

I know we can do this through 'OpenFileDialog' but I want to do this in background - its also ok if we initially hard code domain, user name and password in code.

Thanks in advanced for your help...

share|improve this question

1 Answer

You can use WebRequest Class, It also has a Credentials Property.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.