Requesting data from the server without refreshing the whole page

As the title say, is this even possible?

Let`s say ther is a text box on the web page. Every now and then, the page should request some data from the server to be displayed in the textbox. Obviously, submitting the entire form is not good for performance since data should be received at intervals of seconds.

Is it possible to get data from the server at preset interval and use it to update only a section of the webpage without submitting the entire page?
[476 byte] By [hitai] at [2007-11-19 18:52:22]
# 1 Re: Requesting data from the server without refreshing the whole page
Well, you have two options.

1. Use AJAX (asyncronous client-server connection).
2. Hide and IFRAME and reload the data in that.
PeejAvery at 2007-11-8 0:22:33 >
# 2 Re: Requesting data from the server without refreshing the whole page
I would recommend AJAX
http://www.dynamicdrive.com/dynamicindex17/ajaxcontent.htm
degsy at 2007-11-8 0:23:33 >