Hi,
Not sure why this is not working (asp.net-mvc).
I have overriden the view page class:
namespace MYBlah.Core {
public class MyViewPage <TViewData> : ViewPage<TViewData> where TViewData : class
{
}
public class MyViewPage : ViewPage
{
}
public class ViewDataForUser
{
public int Age {get; set;}
}
}
My view:
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="MYBlah.Core.MyViewPage<MyBlah.Core.ViewDataForUser>" %>
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
<h2>settings</h2>
</asp:Content>
What is wrong with this?
Error:
Could not load type MYBlah.Core.MyViewPage
