action-parameters

How MVC fill Id parameter?

Hello, today I've got some interesting observation, that I need to explain. I've got my Person class that is described as above: public class Person { public int Id { get; set; } public string FirstName { get; set; } public string LastName { get; set; } } now in my MVC2 application I've got PersonController with following ed...