I\'m looking to load a GridView with a generic list and have the columns be auto-generated. I am getting an exception that it does not have the correct properties to allow i
Try adjusting your student class and change your fields into properties like this:
student
public class student { public string name { get; set; } public string address { get; set; } }