Hello!
I have a database with a table called Games, with the following columns:
GameID | GameTitle | GameImagePath | GamePublisher | GameReleaseDate | GameDescription
I want to create a page that populates different elements with the information in the database using QueryString. So when I go to the page, like this:
localhost.com/Display?gameid=1
It will collect all the information from the table for that specific game. On the page, I will have labels, images etc that will be populated with the database info. A simple illustration on how it could look:
So as you can see, the page will have the ASP.NET controls (such as Label, Image) spread around the page, populated with the information from the database. I'm simply wondering what the best way of achieving this would be. It needs to use QueryString, so
I can use the same page and simply change the GameID in ...
Go to the complete details ...