While this isn't an ASP question per se, it is often requested by developers creating an ASP site. Sometimes you just don't want IE to remember previous entries in an input field. You can turn this feature off as follows:
| <INPUT TYPE="text" AUTOCOMPLETE="Off"> |
You can also turn it off at the form level, like so:
| <FORM AUTOCOMPLETE="Off"> |