vote up 0 vote down star

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

flag

43% accept rate

3 Answers

vote up 0 vote down

Where is the namespace declaration for the class?

ETA: have you seen this thread? Could it be the same error?

link|flag
vote up 0 vote down

Check your web.config file, particularly the <pages/> section. You may need to add the MYBlah.Core namespace to the namespace list.

link|flag
vote up 0 vote down

Maybe it's because your class is non-generic, but you reference it as a generic class here:

 Inherits="MYBlah.Core.MyViewPage<MyBlah.Core.ViewDataForUser>"

For .NET, a generic class MyViewPage is different than MyViewPage<T>.

link|flag
I updated my post, but I have a generic overload. thanks! – mrblah Jul 1 at 20:05
In that case... since the type couldn't be loaded, there might be a TypeLoadException involved. You could attach a debugger, set it to break at all exceptions and look at the details – chris166 Jul 1 at 21:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.