tags:

views:

48

answers:

1

Hi,

I have a database table called "Warehouse" this Warehouse's linked to a "Product" table (1 to many relationship). How do I in ASP.NET MVC:

  1. Create a warehouse view/page with the total number of products in this warehouse displayed
  2. On the same view/page display the product id and name and qty as textfields (allow editing) prepopulated
  3. On the same view/page have a save bottom. if clicked will save all the changes

Is it possible in ASP.NET MVC? How do you go about it?

Thank you!

+2  A: 

Have a look at the NerdDinner tutorial. It goes into detail exactly how to do the things you described, with generous code samples.

Robert Harvey
Thank you!!!!!!
noobplusplus