Possible Duplicate:
Disable browser ‘Save Password’ functionality
Is there a standard way to prevent the end-user's web browser from saving a password using HTML or maybe JavaScript?
Possible Duplicate:
Disable browser ‘Save Password’ functionality
Is there a standard way to prevent the end-user's web browser from saving a password using HTML or maybe JavaScript?
 
    
     
    
    Use the non-standard autocomplete="off". Your HTML won't validate with it, though.
Info at Mozilla Developer Center
Info at MSDN
 
    
    In HTML5 you can use autocomplete="off" but that will only work on browsers that support it
