Another thing to note is that the prefix is to help reflection find the proper field(s) to update. For instance if I have a custom class for my ViewData such as:
public class Customer
{
public string FirstName {get; set;}
public string LastName {get; set;}
}
public class MyCustomViewData
{
public Customer Customer {get; set;}
public Address Address {get; set;}
public string Comment {get; set;}
}
and I have a textbox on my page
<%= Html.TextBox("FirstName", ViewData.Model.Customer.FirstName) %>
or
<%= Html.TextBox("Customer.FirstName", ViewData.Model.Customer.FirstName) %>
here is what works
public ActionResult Save (Formcollection form)
{
MyCustomViewData model = GetModel(); // get our model data
TryUpdateModel(model, form); // works for name="Customer.FirstName" only
TryUpdateModel(model.Customer, form) // works for name="FirstName" only
TryUpdateModel(model.Customer, "Customer", form); // works for name="Customer.FirstName" only
TryUpdateModel(model, "Customer", form) // do not work
..snip..
}