tags:

views:

45

answers:

1

I'm curious as to how others are achieving master detail pages in ASP.NET MVC - without JavaScript.

Imagine you have an order details page displaying details for a single order.

In addition to details of the order, you also have a table of the lines on that order.

You would like to be able to edit existing order lines and create new order lines all on the same page.

Basically this is the behaviour we would get from the combination of a GridView and DetailsView in web forms.