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 second player's computer without reloading the page. I don't know if some code will help but here is the way I did it without reloading(the user must reload the page manually... dumb):

protected void TopLeft_TextChanged(object sender, EventArgs e)
    {
        Application.Lock();
        GameBoard gameBoard = new GameBoard();
        gameBoard.board[0, 0] = char.Parse(this.TopLeft.Text);
        Application["TopLeft"] = gameBoard.board[0, 0];
        Application.UnLock();
    }

And then, on page pre render:

protected override void OnPreRender(EventArgs e)
    {
        base.OnPreRender(e);

        Application.Lock();
        if(Application["TopLeft"] != "0")
        {
            this.TopLeft.Text = Application["TopLeft"].ToString();
        }
        ...

And so on... I'd be very thankfull to anyone who can help!

link|improve this question

You'll want to read up on AJAX – Jack Marchetti May 10 '11 at 15:50
feedback

3 Answers

up vote 1 down vote accepted

You are asking about Partial Page Update.

First, you need to place the client TextBox or what ever other controls that you need to reload inside an UpdatePanel.

Then, you need to call the UpdatePanel.Update to update those controls whenever you need.

link|improve this answer
And they will update for both the users? – Tsvetan May 10 '11 at 15:35
1  
@Tsvetan: UpdatePanel.Update() reload just the updated values of its contents on the same page. If it has been called on one peer, then it will update the contents on this peer's page. – Akram Shahda May 10 '11 at 15:41
1  
@Tsvetan: An example from stack overflow is voting. When you vote a question, then new value is the total voting that happened till the indicator is refreshed. But the indicator wont be refreshed by itself. – Akram Shahda May 10 '11 at 15:43
1  
@Tsvetan: But of course you can update it intervaly using a timer for example. – Akram Shahda May 10 '11 at 15:44
Well, it seems I'll make it with some kind of timer... Thanks a lot!!! – Tsvetan May 10 '11 at 15:57
feedback

You will need to use AJAX to do this. I recommend looking at some of the AJAX capabilities that jQuery offers but you can also look at the AJAX Toolkit from Microsoft.

Here is documentation for AJAX in jQuery:

I feel this is much "lighter" than what Microsoft offers out of the box. You can find out more about the Microsoft AJAX toolkit here:

link|improve this answer
Thanks! But I don't have so much time reading docs, so, is there a way to reload the page of the user who is waiting after the input of the player who was on turn? – Tsvetan May 10 '11 at 15:35
1  
You should make the time. – TheGeekYouNeed May 10 '11 at 16:49
feedback

Check out AJAX. This will require client scripting to submit and detect updates without submitting or updating the entire page.

Note, however, that this is a fairly advanced topic and will not simply be a little snippet of code you can add. I would recommend a good AJAX/JavaScript/jQuery book.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.