<%@ Page Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="ViewCart.aspx.cs" Inherits="GadgetsOnlineWebForms.Views.ShoppingCart.ViewCart" %> <%-- --%>

Review your cart:

Checkout >>

<% foreach (var item in Model.CartItems) { var productUrl = "/Views/Store/Details.aspx?productId=" + item.ProductId; var removeFromCartUrl = "/Views/ShoppingCart/ViewCart.aspx?removeFromCart=" + item.ProductId; %> <% } %>
Product Price (each) Quantity
"<%= item.Product.Name %>" <%= item.Product.Price %> <%= item.Count %> Remove from cart
Total <%= Model.CartTotal %>