With the sample image above and using VB.Net.
In my database I have a table titled Squares. I have a web form titled Squares.
Through code behind I would like to dynamically create a table on my form and fill it with data from the Squares Table.
Column and Row Headers to contain the following:
x_pos (string) - as column headers where initial display values will optionally = “?” or a number 0-9.
y_pos (string) - as row headers where initial display values will optionally = “?” or a number 0-9.
Each Cell filled with the following:
gameId - invisble
memberId (int) - displaying the User Name
paid (bit) - a yes/no checkbox
After all squares have been chosen the site admin will click a Button control and generate in random order the values 0-9 for each Column Header and each Row Header.
...
Go to the complete details ...