Order Id | 11 |User Name | 12 |Address | 13 |Confirmation Number | 14 |Delivery Date | 15 |Operations | 16 |
---|
49 | @Html.ActionLink("Forgot your password?", "ForgotPassword") 50 |
*@ 51 | } 52 |Welcome to Johnny's Game Store! You can purchase consoles, accessories and games here. You can register as 'Regular' user to purchase products. Or, register as 'Advanced' user to sell your own products!
8 |Product Id | 79 |Product Name | 80 |Price | 81 |Quantity | 82 |Sub Total | 83 |
---|---|---|---|---|
@item.ProductId | 90 |@item.ProductName | 91 |@Html.FormattedCurrency(item.GetDiscountedPrice()) | 92 |@item.Quantity | 93 |@Html.FormattedCurrency(item.GetTotalCost()) | 94 |
Total: | @Html.FormattedCurrency(total) |
Order Id | 43 |User Name | 44 |Address | 45 |Confirmation Number | 46 |Delivery Date | 47 |
---|---|---|---|---|
@order.OrderId | 54 |@order.UserName | 55 |@order.Address | 56 |@order.ConfirmationNumber | 57 |@order.DeliveryDate | 58 |
Product Id | 18 |Product Name | 19 |Price | 20 |Quantity | 21 |Sub Total | 22 |Operations | 23 |
---|---|---|---|---|---|
@item.GetItemId() | 30 |@item.GetItemName() | 31 |@Html.FormattedCurrency(item.GetDiscountedPrice()) | 32 |33 | @using (Html.BeginForm("CreateOrUpdate", "ShoppingCart", FormMethod.Post, new { enctype = "multipart/form-data", @class = "form-inline" })) 34 | { 35 | 36 | 37 | 38 | } 39 | | 40 |@Html.FormattedCurrency(item.GetTotalCost()) | 41 |42 | @using (Html.BeginForm("CreateOrUpdate", "ShoppingCart", FormMethod.Post, new { enctype = "multipart/form-data", @class = "form-horizontal" })) 43 | { 44 | 45 | 46 | 47 | } 48 | | 49 |
@Html.FormattedCurrency(total) | @Html.ActionLink("Checkout", "Checkout", new { controller = "ShoppingCart" }, new { @class = "btn btn-primary" }) |