I have a list of error that I need to display with paging at the browser, however, I'm not pulling data from the database, I'm building this model based on a number of business logic and this list could be up to 1000 items or more. All items need to be available at the front end, that many items scrolling is cumbersome for users, that's why I need paging mechanism here.
Note: I'm using asp.net MVC framework
And, here's my error model
public class ErrorViewModel
{
public string ErrorType { get; set; }
public string ErrorMessage { get; set; }
public string AdditionalMessage { get; set; }
}