Hi, I have a HTML.BeginForm() to change user's data (email, password etc) but I want to separate the contents at the same page, I mean that there will be:
MainContent with submit button and also
- a HTML.BeginForm() with fields to change password + submit button
- a HTML.BeginForm() with fields to change email + submit button
the thing is, I want to allow user to change his password without sending all form data to the controller, only data from the password fields.
That View inherits from my buisness object with properties (Login, Password, Email etc)
Any ideas how to do that will be so helpful. Thanks !