I am attempting to update a project from ASP.NET MVC Preview 3 to Preview 5 and it seems that Controller.ReadFromRequest(string key) has been removed from the Controller class. Does anyone know of any alternatives to retrieving information based on an identifier from a form?
|
|
Looks like they've added controller.UpdateModel to address this issue, signature is: UpdateModel(object model, string[] keys) I haven't upgraded my app personally, so I'm not sure of the actual usage. I'll be interested to find out about this myself, as I'm using controller.ReadFromRequest as well. |
||
|
|
|
|
Hi Kevin, could you redo that link in something like tinyurl.com? I need this info too but can get that mega-link to work. |
||
|
|
|
Thanks Matt for pointing me to the right direction. After you told me about UpdateModel, I found this helpful post. http://blog.rodj.org/archive/2008/09/01/asp.net-mvc-update-preview-4-to-preview-5.aspx |
|||
|
|
|
|
Not sure where it went. You could roll your own extension though: public static class MyBindingExtensions {
|
|||
|
|
