Streaming Response for the chat-like application. How?

A

alex

Hi All.

What is the algoritm to implement streaming http chat. I need something like this:

private void Page_Load(object sender, System.EventArgs e)
{
Response.BufferOutput = false;
while (Response.IsClientConnected)
{
//get db data
string strData = "some_data_from_db";
Response.Write(strData);
Response.Flush();

Thread.Sleep(5000);
}
}

What do you say? tnx
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,764
Messages
2,569,564
Members
45,039
Latest member
CasimiraVa

Latest Threads

Top