Reputation: 221
I have a website which I need to update, but I've lost the local files.
I have started a new web application, all empty, in visual studio 2010. How can I log in the web site and copy all the files into my new project so I can work with it? (I have the login details like ftp address and password)
Upvotes: 2
Views: 2974
Reputation: 1126
In your VS project, place the files you copied down from FTP into your VS folders in the same structure it is on the site (for example your .csproj and web.config in the same folder which acts as a root. Then you can view all files in Visual Studio and include the files and folders you need for your site into your VS project.
Upvotes: 1