I have created a Razor view in my asp.net MVC 3 application. It is a page where I fill Payment info. After I signout, I try to purchase another product. When I click any one the textboxes, I get dropdown showing what I filld earlier. How can I clear the cache for this page ? This happens in chrome only.
Share
When you declare your textboxes, you need to add
autocomplete="off"to your attribute collection, it will work for most browsers. See here for more information.