simple and quick option for programmer is to reset directly from database. Execute following query and it will reset your password
update be_users set password=md5(‘your new password’) where username = ‘admin’;
This will change your administrative password to ‘your new password’.
Keep in mind that it is important for your installation security to change the password again once you are logged in the administrative area.