The simplest solution is probably to use the NS events to update the state
of the web app. A custom event provider implementation would do the trick.
I am not aware of a simple way of pushing changes to the client browser
though. You can approximate this behavior by making the page refresh itself
periodically.
-Colin Meek [MSFT]
--
This posting is provided "AS IS" with no warranties, and confers no rights.
Use of included script samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm. Please do not send e-mail directly to this alias. This alias is for
newsgroup purposes only.
--
[quoted text, click to view] "Ilker Tunca" <anonymous@discussions.microsoft.com> wrote in message
news:33d801c4c1d5$0622b830$a601280a@phx.gbl...
> Hi,
> I have a web application (ASP.Net based) that show some
> information about production line activities. I want to
> refresh a web page when a critical stop event occurs in a
> production line. Stop events collected in a SQL table and
> my event provider recognize them. But I didn't find a
> solution how to combine NS and web application. Is it
> possible to use NS for an implementation like that?
>
> Thanx.