I had a client ask how to remove the request for the ftp username and password each time an wordpress update was requested. To remove this, just add the following information to your wp-config.php
define('FTP_USER', 'username');
define('FTP_PASS', 'password');
define('FTP_HOST', 'ftp.example.org:21');
voila! No more asky 🙂