I have asked a similar question recently but getting no answers i am taking a step back with a more broad approach.
I am looking to create a confirm password field using asp.net MVC2 that works on the client. All my other client validation is done with MicrosoftMvcValidation.js by just adding the Html.EnableClientValidation(); call.
Some of my considerations. Should the confirm password be part of the model object? Using that approach i have created server side validation by creating my own model binder.
Are there any projects out there that have done this?