I am trying to use WebGrid in ASP.NET Core (installed package NonFactors.Grid.Mvc6
followed instructions from link
@(Html.Grid(Model).Build(columns =>
{
columns.Add(model => model.FName).Titled("FistName");
})
.Filterable()
.Sortable()
.Pageable()
)
But running the code, the page shows blank, chrome-dev-tool: shows error:
Failed to load resource: net::ERR_CONNECTION_RESET
suggestions, what can be done to fix it. Thank you