noobplusplus
noobplusplus

Reputation: 177

Confused about ASP.NET MVC

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!

Upvotes: 1

Views: 77

Answers (1)

Robert Harvey
Robert Harvey

Reputation: 180878

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

Upvotes: 2

Related Questions