In ASP.NET web forms, viewstate data is hashed and a hidden input is added to form to validate when receiving a request. So if a malicious user decides and alters the viewstate an error occurs when the form send back to application.
Is there such facility available (as an attribute or else) built in to ASP.NET Core MVC forms specially unobtrusive Ajax forms?
Thank you.