I’m new to Web programming!
I try to make an app (something like Client to Client communication with C# Handlers and jQuery).
I.E.:
When 1Client make a click on his clientSide(browser), there paints one point, and on the same time the 2Client sees what 1Client did. And, in turn, where 2Client make a click on his browser, there paints one point, and the 1Client also sees what 2Client did.
I could done already the configuration of IIS, I made an simple show Hello World and it run OK.
And, further, what should i done….
Can you advice me, please, with some exemples, or tutorials, how to do this job.
Sorry for my questions which seems to be not studied.
To show a chat like think. The simplest way that I can think.
First you have a table that keep all the chat lines that enters.
Then in a page you have two controls, one text box that users enter text, and one GridView that you show what is on the table.
All of that you place them on an UpdatePanel and you make an internal update to 2 seconds.
So every enter from the users you inserting to the table, and every insert you show to all users.
This is for start.