This is a migrated thread and some comments may be shown as answers.

[Solved] HttpCompileException error

0 Answers 64 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Rik
Top achievements
Rank 1
Rik asked on 30 Mar 2010, 08:44 PM
I'm following this link to see how the GRID works:

http://www.telerik.com/help/aspnet-mvc/telerik-ui-components-grid-introduction.html

after having copied this in the index.aspx:

<%= Html.Telerik().Grid(Model)
        .Name("OrdersGrid")
        .Columns(colums =>
        {
            colums.Bound(o => o.OrderID);
            colums.Bound(o => o.ShipAddress);
            colums.Bound(o => o.RequiredDate);
        })
        .Pageable()
        .Sortable()
%>
when building the application I get this error message:
Error 1 The type or namespace name 'Order' could not be found (are you missing a using directive or an assembly reference?) 

Any help is most approeciated.

 

Tags
General Discussions
Asked by
Rik
Top achievements
Rank 1
Share this question
or