Google


ADBRITE ads links
You are here: CodeIdol.com > Ajax > Head Rush Ajax > Making Ajax Requests Speaking The Language > Get The Servers Response From The Request Object

SAVE
Digg
Shown on del.icio.us del.icio.us
See Whos Talking About This on Technorati Technorati
I've Reddit reddit

2.33. Get the server's response from the request object

If the ready state is "4", the browser will have put the server's response in the request object's responseText property:

    function updatePage() {
      if (request.readyState == 4) {
        /* Get the response from the server */
        The browser will store the server's reponse in the responseText property.var
customerAddress = request.responseText;The server is returning the customer's address.
        /* Update the HTML web form */
      }
    }

Blueprints, revisited

You haven't fogotten about the diagram and notes you drew up for developing the Break Neck application, have you? Take a moment to look back at what you wrote down on pages 73, and see how that compares to the steps we've taken so far. This is your chance to make a few more changes before we hit the home stretch.

In the space below, write down what you think still needs to happen to complete the Break Neck application.



SAVE
Digg
Shown on del.icio.us del.icio.us
See Whos Talking About This on Technorati Technorati
I've Reddit reddit

You are here: CodeIdol.com > Ajax > Head Rush Ajax > Making Ajax Requests Speaking The Language > Get The Servers Response From The Request Object
   
Related tags







Popular Categories
Unix books and guides
AJAX popular information
C# language guides
Windows books and cookbooks
.......






© CodeIdol Labs, 2007