Hey I am getting the following error
Parser Error Description: An error occurred during the parsing of a resource required to service this request. Please review the
Specify the namespace of the Inherits property of Page directive
Look at codebehind of your page. It looks like:
namespace MyWebSite
{
public partial class _AddToCart : System.Web.UI.Page
{
//...
}
}
So you must change Page directive to:
<%@ Page Language="C#" AutoEventWireup="true" Codebehind="AddToCart.aspx.cs" Inherits="MyWebSite._AddToCart" Title="Untitled Page" %>