Is it secure to POST Credit Card data from View to Controller?

asp.net-mvc, credit-card, post, security

Solution

Post the data using SSL.

Here's a good resource on setting up SSL with IIS and ASP.NET.

Problem

Need to submit some CC data from the View to the Controller where it will be processed, can I just POST it or is there some common way of securing the data in transit?

Original source

Related problems