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:
- Create a warehouse view/page with the total number of products in this warehouse displayed
- On the same view/page display the product id and name and qty as textfields (allow editing) prepopulated
- 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!