Let's suppose a user enters sensitive data (like SSN, etc) in a HTML input (textbox) on a page in a MVC web app.
What would be the way to secure that piece of data before sending it (either thru form-post, URL query string, etc). Does ASP .NET MVC provides a mechanism to do that?
P.S. I'd like to know how to do it with MVC, not HTTPS or something else based on infrastructure/transport/etc