I am trying to access a password-protected ftp site. I have user "foo" pass "pass#1" When I enter them directly, it works.
I am now trying to craft a single URL that contains the user/pass within (e.g. ftp://foo:pass%231@ftp.arsecommerce.com/), but it doens't work. I tried URLEncoding the # and failed.
How do I properly encode the # sign?

pass%231is being transmitted aspass#1. – Arjan Oct 26 '09 at 9:22