Hopefully the question will be relevant, so please bear with me. I can't be the only one going through this.
I was an ASP.NET webforms developer for over a decade when it was still relevant. Unfortunately, it's been phased out so I'm trying to learn ASP.NET Core.
Most of the web apps I created were webforms with table controls (ie. listviews, gridviews, etc) that connect to SQL tables and display data. The end-user clicks on one of the items and sees the detail of the item by redirecting to another .aspx page, with specific query string parameters.
With that said and considering all the types of asp.net core frameworks, I've been researching to find which would be the ideal framework to create an html table that displays a bunch of images so that the end-user can click on and see its detail. Unfortunately, just finding this ideal version has been difficult.
I've also tried searching for tutorials that show how to create a simple webpage with a gridview (either data-bound or manually populated) and I only saw one 3-year-old youtube video that used .NET Core and MVC. Besides using deprecated libraries, it uses MVC and I don't have experience with it.