Tagged Questions

2
votes
1answer
42 views

Reloading another user's page

Assume you have made an internet game of tic-tac-toe or sth that is played between players. So, when a player inputs 'x' or 'o' or whatever is the input, the opponent must receive it on his pc. I ...
1
vote
3answers
217 views

Submit value of a TextBox without reloading page

I'm working on an ASP.NET based TicTacToe game. The problem I have with it is that: The game is played between two users. When the first one types 'x' in the TextBox I want the 'x' to be shown on the ...
1
vote
7answers
299 views

What's the best way to approach this simple TicTacToe exercise?

Everything is working up to here, I just need to create the method that checks whether someone has won. Any suggestions on how to tackle this problem effectively? using System; using ...