Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I like the Visual Studio 2008 IDE integrated (not command line) feature to choose to publish an ASP.NET website to my webserver via FTP. I'm able to store my FTP username but I don't see any option to store my FTP password and so I must type it in each time I publish.

Is there an equivalent to the "Remember password" functionality found on many login systems for VS2008 FTP publishing?

alt text

Thanks!

share|improve this question

1 Answer

up vote 18 down vote accepted

On the previous screen where you select what ftp server you want, simply add the credentials as if you were visiting a secure website in a web browser:

ftp://myuser:mypass@example.com:21/my/path/to/web/root/

It saves the URL between sessions and does not prompt for passwords, at least in my experience with VS 2008.

share|improve this answer
Awesome, thanks! – Adam Kane Oct 29 '09 at 17:15

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.