I've been wondering about the possibility of generating a strongly-type object from the formcollection to extract data from it.
In other words, is it possible to generate a class depending on the keys in the formcollection object?
For example: Say you have a checkbox with the key "ID3" and value "false". And be able to write:
bool CheckBox = FormObj.ID3.GetValue();
I realise it's maybe not the most useful thing in the world, but still interesting.
I'm guessing it's down to a language limitation.
Any thoughts on this?
Edit:
Ok, so if I have a list (unknown length) and do a foreach in my view and get checkboxes, how would I bind them in my controller?
<% foreach (var item in Model.AllAttributes)
{ %>
<tr>
<td>
<%: Html.CheckBox(item.AttributeID.ToString(), item.Chosen) %>
</td>
<td>
<%: item.AttributeTitle %>
</td>
<td>
<%: item.Category.CategoryName %>
</td>
</tr>
<% } %>
What do I put in my controller?
FormCollection- that's for kids. Use strongly typed models, view models, and model binding instead. It will make your ASP.NET MVC experience much better. :) Also, the concept of "postback" doesn't exist in MVC - a form post is a form post. There's no state other than what's sent from the client to the server, hence the term REST. :) – bzlm Mar 11 '11 at 9:28