Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Really real time chat

Status
Not open for further replies.

rjr9999

Programmer
Apr 7, 2001
183
US
Hello,
I'm a new comer to asp so bear with me here. I understand that asp can create html dynamically, but can it then make dynamic changes to that page without actually re-loading it? For example, I've looked into "real time chat" programs writen useing asp, and what I'd really like is just to change the text each time any user submits text without reloading the page, just changeing the text. Is it possible to do this? I can do this with a javascript, but I really want to be able to with asp.

Thanks in advance, Rob
"Programming is like art...It makes me feel like chopping my ear off."

- Currently down
 
That is the way of the web my friend. To interact between the server and the client, the page has to be submitted. However, I have heard that the .NET framework supports the ability to dynamically change documents without making submits to the server...but that is not somthing I've investigated yet first hand...so for now it's just "Hear-Say". -Ovatvvon :-Q
 
Exactly right, it can't be achieved easily as getting data sent back from the server requires a client request - ie. a submit.

.NET does do it, but it's client-side and if anything needs to be sent to the server it's done by submitting.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top