it is not showing any error but not binding the data either.
Have used render method also.
please help.
i ve used below mentioned code in index.aspx
<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<IEnumerable<MvcApplication1.Models.Emp>>" %>
<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
Home Page
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
<h2><%: ViewData["Message"] %></h2>
<p>
To learn more about ASP.NET MVC visit <a href="http://asp.net/mvc" title="ASP.NET MVC Website">http://asp.net/mvc</a>.
</p>
<% Html.Telerik().ScriptRegistrar()
.Render();
%>
<%= Html.Telerik().Grid<MvcApplication1.Models.Emp>()
.Name("EmpGrid")
.Columns(columns =>
{
columns.Bound(o => o.Eid);
columns.Bound(o => o.Ename);
columns.Bound(o => o.MgrID);
})
.Pageable()
.Sortable()
%>
</asp:Content>