Ask a Question related to ASP.NET Building Controls, Design and Development.
-
PBS #1
Server PUSH to client
We have an internal asp.net application for orders/manufacturing
information. Presently we have set the META Refresh tag on the affected
pages set to "120" so the client browsers refresh every two minutes so
displayed data is "current". This has several drawbacks, including the
annoyance of a the refresh occurring while the user is viewing a page, and
the fact that the great majority of refreshes are unnecessary as no data has
changed.
Is there a technique for sending updates from the Server to the Client when
data is changed? Any suggestions?
Thanks/
PBS Guest
-
Can you push XML data with Media Server 2
Can you use Media Server 2 to PUSH just regular data to a SWF say like XML data sent every second? THX Kevin -
Flash Webcam client <-> client (not client <-> server<-> client)
Dear Flash Team, supporter and regular mortals (Like myself) I am currently running a IRC chat with mostly webclients connected. We currently offer... -
Server push
Hi all, I have developed a PHP-based website where a "planner" user can make up schedules of activities to be performed, storing them into MySQL... -
how to do a server push
At a certain page in my web app I'm entering users into a Queue for processing, how can I do a server push (like the expedia 'searching for... -
Push XML data to client for processing
Hello, Although I consider myself a proficient C++ programmer (and am getting better everyday at C# :-) I am new to and having a little trouble... -
Brock Allen #2
Re: Server PUSH to client
> Is there a technique for sending updates from the Server to the Client
HTTP is a request/response protocol. You'll have to work around that issue> when data is changed? Any suggestions?
by building a polling system, which it already sounds like you're doing with
the META Refresh tags. The other option is to use XmlHttp in javascript to
make a request tot he server. This will avoid the refresh when no data has
changed. Once your javascript does detect a chance, you can make the browser
do a refresh.
-Brock
DevelopMentor
[url]http://staff.develop.com/ballen[/url]
Brock Allen Guest
-
Kannan.V [MCSD.net] #3
RE: Server PUSH to client
hi,
here are a couple of links to guide in the direction......
[url]http://dotnetjunkies.com/WebLog/davetrux/archive/2004/06/16/16745.aspx[/url]
[url]http://www.codeproject.com/jscript/refreshpartweb.asp[/url]
regds
Kannan.V
"PBS" wrote:
> We have an internal asp.net application for orders/manufacturing
> information. Presently we have set the META Refresh tag on the affected
> pages set to "120" so the client browsers refresh every two minutes so
> displayed data is "current". This has several drawbacks, including the
> annoyance of a the refresh occurring while the user is viewing a page, and
> the fact that the great majority of refreshes are unnecessary as no data has
> changed.
>
> Is there a technique for sending updates from the Server to the Client when
> data is changed? Any suggestions?
>
> Thanks/
>
>
>Kannan.V [MCSD.net] Guest
-
Dale Preston #4
Re: Server PUSH to client
You could just add an iframe to your page and set the src of the iframe to
an aspx page that will reload on a timer using meta refresh or a javascript
timer. The iframe will reload its document without reloading the rest of
the page.
HTH
Dale Preston
MCAD, MCDBA, MCSE
"PBS" <pbs@allwave.com> wrote in message
news:ulEZiSqPFHA.904@TK2MSFTNGP10.phx.gbl...has> We have an internal asp.net application for orders/manufacturing
> information. Presently we have set the META Refresh tag on the affected
> pages set to "120" so the client browsers refresh every two minutes so
> displayed data is "current". This has several drawbacks, including the
> annoyance of a the refresh occurring while the user is viewing a page, and
> the fact that the great majority of refreshes are unnecessary as no datawhen> changed.
>
> Is there a technique for sending updates from the Server to the Client> data is changed? Any suggestions?
>
> Thanks/
>
>
Dale Preston Guest



Reply With Quote

