Coming from PHP background. What would be the easiest (best?) way to display a table of data populated in C#? The format of the data could be modified as required, right now, I am thinking 2D list to store the data.
Gridview is nice and all but I haven’t found a way to use a C# List as it’s data source.
No real feature is required. I can implement my own editor / inserter, etc.
Gridview is what you need. To bind to a list, you just set the list as the datasource and away you go:
Or use an ObjectDataSource control on the page instead…