I have a data entry form that has remote validation set up to check for existing values in the database for a certain field.
Here's what happens:
Go to Create page (data entry form). Enter value X for field.
Field loses focus. Remote validation is called. Fiddler shows the call.
Click Save. Record is saved; page switches to Index page.
Go to Create page again. Enter value Y again for field.
Field loses focus. Remote validation is called (per Fiddler).
Click Save. Record is saved; page switches to Index page.
Go to Create page AGAIN and enter X (again) for field.
Field loses focus. Nothing happens. No call to remote validation (per Fiddler).
Click Save. No call to remote validation. Page attempts to save record but database spits it back.
It's as if the Create page is remembering that a previous value for the field was also X, and not revalidating it since it hasn't changed, even though I've been to other pages in the meantime.
I'm not passing a model to the Create view: I cannot imagine where it's getting the idea that that field has a previous value that's being (or not being) changed.
As far as I can tell, OutputCache is not being used. I'm on IE 8, if it matters.