Streaming Response for the chat-like application

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

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top