MVC works differently to the WebForms aspx pages that map asp controls to objects in the code behind. In MVC there is no mapping of front end controls to to back end classes.
Here is some overview on the difference between ASP.NET MVC and WebForms.
Unless I don't understand the question?
Edit:
The Model, populated in the Controller, basically populates the data that can be used directly in the View. There are Model binding techniques that do bind Model properties to form elements. You will need to have a look at a few examples to get your head around this.
Have a look at this tutorial: http://dotnetslackers.com/articles/aspnet/Understanding-ASP-NET-MVC-Model-Binding.aspx