Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.