I wants to access my web page which data is continuously growing, I want to buffered some of that data write it in responseText then again get next buffered data write it and so on (in AJAX).
Is it possible and how i can do that?

try the ajax request with the javascript code:

window.setInterval(function(){
//ajax request
},
2000);

this request check your data like a ping with in 2 seconds, and if the data is growing or updated the it will shows automatically,,

for reference just google setInterval with jquery...
hopefully this will help you >>

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.