wrote:
> I'm trying to do something similar (I think) to Mike. My scenario involves
> processing a group of files. The user clicks a button in the browser,
> initiating theserver-sideprocessing code. As this code finishes each file,
> I'd like the browser to update an icon next the file in a list on the client
> side. The UpdatePanel.Update method seems to work only after all server-code
> code finishes. Whats the best way to accomplish this?
>
> "Teemu Keiski" wrote:
> > ID is supposed to be ID="Label1". Sorry for the typo.
>
> > --
> > Teemu Keiski
> > AspInsider,ASP.NETMVP
> >
http://blogs.aspadvice.com/joteke > >
http://teemukeiski.net >
> > "Teemu Keiski" <jot...@aspalliance.com> wrote in message
> >news:%23sLfnfi9HHA.1416@TK2MSFTNGP03.phx.gbl...
> > > Hi,
>
> > > if you useASP.NEtAjaxand you have say LAbel with ID="LABEL!" on the
> > > Page. So if you in Button's click set Label1.Text = "Button clicked!"
> > > doesn't that indicate it quite well? At client-side you can use
> > > PageRequestManager
> > > (
http://www.asp.net/ajax/documentation/live/clientreference/Sys.WebFor...)
> > > to get to the point when async postback is about to be sent and handled.
>
> > > Or are you using some otherAJAXimplementation?
>
> > > --
> > > Teemu Keiski
> > > AspInsider,ASP.NETMVP
> > >
http://blogs.aspadvice.com/joteke > > >
http://teemukeiski.net >
> > > "Mike" <m...@hitnext.com> wrote in message
> > >news:3B3FEA5C5A35457787F99BAF32AC6F8A@PHBASE...
> > > Hi,
>
> > > I'm wondering if I can do this withASP.NET?
>
> > > I have anASP.NETapplication that runs a component that fires some
> > >events.
> > > When theseeventsare fired, I will like to trap them at client level
> > > (that is the web browser session where the user is running the actual
> > > application).
> > > Let's say this scenario will be like this:
>
> > > Person clicks on ASPX page button.
>
> > > (I'm usingAJAX) so this triggers the CLICK event of the button on the
> > >server side, and this executes come code .
>
> > > This code will fire someeventsat the server level ...
>
> > > I want the client (user in its web browser) to "see" thiseventsas they
> > > are fired and react properly, let's say update a LABEL control as this
> > >eventsare triggered and catched.
>
> > > Please help me out here, you savvy people, because I'm stuck!
>
> > > Later and thanks,
>
> > > Mike
I have the exact same problem. Let me know if you ever track down an