hello everybody,
I am working on a chatting application and i was using simple ajax polling to retrieve the new chat but its working good because there are few more xmlHttp request to check online status and to send chat to others and some for other reason, so i think there are many request in my form thats why its not working so now i want to do these things in Comet style. so please tell me about it that how to do.
this is sever side code
Dim output As String = JavaScriptConvert.SerializeObject(newChat)
Response.Flush()
Response.Clear()
Response.Write(output)
Response.End()
and at client side i was set a time out to check continuously.