Quote Originally Posted by Nightwalker83 View Post
Well, I solved the above errors by rewriting the shopping cart index page. Although, now I have another problem:

Server Error in '/' Application.
The current request for action 'LogOn' on controller type 'AccountController' is ambiguous between the following action methods:
System.Web.Mvc.ActionResult LogOn(MvcMusicStore.Models.LogOnModel, System.String) on type MvcMusicStore.Controllers.AccountController
System.Web.Mvc.ActionResult Logon(MvcMusicStore.Models.LogOnModel, System.String) on type MvcMusicStore.Controllers.AccountController
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
It looks like you had two actions with the same name and parameter sets in the controller.

.