MVC 3 Edit data in a IEnumerable Model View

I’m trying to edit a list of items in a strongly-typed razor view. The templates don’t give me the option to edit a list of objects in a single view so I merged the List view with the Edit view. I only need to edit one boolean field in a checkbox.
The problem is that i cant get the data back to the controller. How do i do it? FormCollection? Viewdata? Thanks in advance.

@RenderSection in nested razor templates

My problem is I can’t seem to use @RenderSection from a nested template when @RenderSection is defined in the base template. Currently, I have a nested base template which is linked to a child template which is then used in the view pages. When I define the @RenderSection in the base template and render it in the view pages it throws an error.