giangiammy@gmail.com wrote:[color=blue]
>
> I need to implement a web page with a table: [snip]
>
> I think that the push technology could fit this requirements: do you
> have some links to examples or documentation of this type implementatiom
> in HTML + JavaScript (or eventually using CGI?)
>[/color]
Javascript (though it can be used elsewhere) is essentially a
web-technology used in session-based interactive operations. What that
means is that it is basically a PULL system, rather than a PUSH one. To
implement a push-based system, you would need the web page to call a
server-side javascript that would then push the data to the web page and
keep itself alive throughought the whole session.
That would, naturally, slow the server down, keep the session busy more
than need be and consume a fair bit of bandwidth. You would also need to
keep checking that the session had not been shut down from the client
side, which is what remains essentially "in-charge" of the session.