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.
Asked
Active
Viewed 426 times
0
-
This is not a programming question; this is a question about Chrome's cache. I think you'll find that this will happen on any website unless you change Chrome's settings. – George Stocker Nov 02 '11 at 16:05
-
@GeorgeStocker It is a programming question, but "cache" doesn't really describe the problem, nor is it browser specific. – Yuriy Faktorovich Nov 02 '11 at 16:10
1 Answers
6
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.

Community
- 1
- 1

Yuriy Faktorovich
- 67,283
- 14
- 105
- 142