Skip to content

Instantly share code, notes, and snippets.

@corespider
Created January 5, 2022 17:22
Show Gist options
  • Save corespider/f27d123f09e896e19e588c62d9f38dad to your computer and use it in GitHub Desktop.
Save corespider/f27d123f09e896e19e588c62d9f38dad to your computer and use it in GitHub Desktop.
How to use WebGrid in ASP.Net MVC
public class Customer
{
public int customerId { get; set; }
public string firstName { get; set; }
public string lastName { get; set; }
public string email { get; set; }
public string street { get; set; }
public string city { get; set; }
public string state { get; set; }
public string zipCode { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment