Hi guys im making an ASP.net page in c sharp on VS. I've made up code to build myself a table, a 9x9 grid. I can't get it to:
- Make each cell blank it just says "Submit Query" in each of them
for
(int col = 0; col < 9; col++)
{
board[row, col] = 0;
}
This wont seem to work it does the above error. Any ideas here?
I've also got a popup window that has buttons inside it, so when u click a cell it shows the keypad to enter the value u want in that cell, but i can't get the popup to stay visible it just appears when u click and then goes! I want it to hold until the user clicks a value.
If anyone can assist with these problems that would be amazing! If anything is not clear please ask and i'll try explain it better!
Thanks, Nick
- Make each cell blank it just says "Submit Query" in each of them
for
(int col = 0; col < 9; col++)
{
board[row, col] = 0;
}
This wont seem to work it does the above error. Any ideas here?
I've also got a popup window that has buttons inside it, so when u click a cell it shows the keypad to enter the value u want in that cell, but i can't get the popup to stay visible it just appears when u click and then goes! I want it to hold until the user clicks a value.
If anyone can assist with these problems that would be amazing! If anything is not clear please ask and i'll try explain it better!
Thanks, Nick