Posts
Showing posts from January, 2011
MVC Music Store - Tutorial
- Get link
- X
- Other Apps
![Image](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgudgnYafTUyK5QGb_hl2-V0huGXKjdUCZiG1DxVsneDs3zm4O2kEHcjtDT9hiz97swLTkxnr92iadFelV0RZ-tVqwxkSHkVQ8l-zOtA-VzWjMW7W41iwDKLjl6CBSygp0cQA_ZbT4X-FA/s320/untitled.bmp)
ASP.NET MVC Music Store Tutorial Overview: This tutorial is an introduction to ASP.NET MVC 2. We’ll be starting slowly, so beginner level web development experience is okay. The application we’ll be building is a simple music store. There are three main parts to the application: shopping, checkout, and administration. Visitors can browse Albums by Genre: They can review their cart, removing any items they no longer want: Proceeding to Checkout will prompt them to login or register for a user account. After creating an account, they can complete the order by filling out shipping and payment information. To keep things simple, we’re running an amazing promotion: everything’s free if they enter promotion code “FREE”! After ordering, they see a simple confirmation screen: The Administration page shows a list of albums from which Administrators can Create, Edit, and Delete albums: We’ll begin by creating a new ASP.NET MVC 2 project in Visual Studio 2010, and we’ll...