The solution is to add autocomplete="off" attribute to textbox tag, which will help to stop auto suggestion behaviour for that particular textbox.
And if you want to stop that behaviour for all the textboxes that are present inside a form then add autocomplete="off" attribute to form tag.
According to HTML specifications, autocomplete is an unrecognized attribute which was originally created by Microsoft (feature of remembering what you have entered in previous text fields with the same name, available first in Internet Explorer) and has adopted by all other major modern browsers (except Opera).
After adding this attribute to any textbox or to any form it will look like -
<input type="text" id="txtAccountNumber" autocomplete="off" />
<form id="frmAccount" autocomplete="off"></form>
After adding this attribute, it might invalidate your HTML page. So the work around for this is to add autocomplete attribute to an element through javascript.
You can do it by writing the following piece of javascript code -
<script type="text/javascript">
window.onload = function()
{
document.getElementById('frmAccount').setAttribute('autocomplete', 'off'); // Here frmAccount indicates id of the form.
}
</script>
Hope this will help you.