I don’t like to have to use parameters to my POST action methods in addition to my view model parameter. However, for a file upload using the Telerik Upload helper, it seems I am forced to do this. The posted value is IEnumerable<HttpPostedFileBase>. Is there any way I can also bind this to the model without the effort of custom model binding.
I don’t like to have to use parameters to my POST action methods in
Share
Me neither. That’s why I use view models:
and then: