So you're developing an application using ASP.NET MVC and you got a Person class with properties: 1: string FirstName;
2: string LastName;
3: string Email;
4: Uri Webpage;
And of course you have a form that collects these 4 pieces of information. And you build an Action in your PersonController called Create like so:
1: public ActionResult Create(FormCollection form)
...