Client-side chat

J

Jason Walraven

I was wondering if anyone has done real-time client-side chat in ASP .net
yet. I have a project where this is needed, and I'm wondering if someone
can steer me in the right direction of where to start.

Thanks,
Jason Walraven
 
M

matt

The key elements to a browser based asp.net chat session is going to be
getting to grips with using hidden frames (or other method of submitting
a request invisibly - can also be done using
document.createElement("script") and then adding the relevant src
attribute, etc...), javascript, and possibly DHTML to communicate
invisibly with the server on a regular basis to check for new messages.
It can be done, but you will have to keep going back to the server often
as there is no way to push messages to the browser from the server when
they are received.

I think I remember seeing some similar solution in asp, but it was a
while ago and I can't remember where.

Matt
 
J

Jason Walraven

Thanks


matt said:
The key elements to a browser based asp.net chat session is going to be
getting to grips with using hidden frames (or other method of submitting
a request invisibly - can also be done using
document.createElement("script") and then adding the relevant src
attribute, etc...), javascript, and possibly DHTML to communicate
invisibly with the server on a regular basis to check for new messages.
It can be done, but you will have to keep going back to the server often
as there is no way to push messages to the browser from the server when
they are received.

I think I remember seeing some similar solution in asp, but it was a
while ago and I can't remember where.

Matt
 

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,769
Messages
2,569,582
Members
45,058
Latest member
QQXCharlot

Latest Threads

Top