0

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.

Cœur
  • 32,421
  • 21
  • 173
  • 232
DotnetSparrow
  • 25,248
  • 60
  • 171
  • 307
  • 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 Answers1

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
  • 62,163
  • 14
  • 99
  • 133