OpenOrderFramework
OpenOrderFramework copied to clipboard
An ASP.NET MVC 5 app that works as a generic shopping cart. It can be customized to handel any type of online shopping. Users can place an order and that order is sent via e-mail to the store's owners
After publishing it to IIS, I click the add items link but the shopping cart remains empty.
Line 67: instead of ` @Html.ActionLink(item.Item.Name, "Details", "Store", new { id = item.ID}, null)` It should be ` @Html.ActionLink(item.Item.Name, "Details", "Store", new { id = item.ItemId }, null)`
In the AppConfigurations.cs file 1. _domainForApiKey should be _fromName [ public string FromName { get { if (!String.IsNullOrEmpty(_fromName)) return _fromName; else { ``` NameValueCollection appSettings = ConfigurationManager.AppSettings; # **_domainForApiKey** =...
Item page contains all the items, Item page should contain list of categories on left side and on clicking [category,](url) item of selected category will be shown. I think this...