While populating the WebGrid: I have sent the list listImmuDtl to the view from the controller . Till the controller the data is coming in this listImmDtl. But its not populating the webgrid, only the paging numbers are coming. My View is
@{
ViewBag.Title = "Member Dtl";
}
<h2>Member Details</h2>
@model List<Analysis.Models.MemDtl>
@{
var grid = new WebGrid(source: Model,defaultSort:"Name");
}
@grid.GetHtml();
please someone verify this and tell me where i am going wrong!