Hi,
if you use ASP.NEt Ajax and 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.WebForms/PageRequ
estManagerClass/default.aspx)
to get to the point when async postback is about to be sent and handled.
Or are you using some other AJAX implementation?

Signature
Teemu Keiski
AspInsider, ASP.NET MVP
http://blogs.aspadvice.com/joteke
http://teemukeiski.net
Hi,
I'm wondering if I can do this with ASP.NET?
I have an ASP.NET application that runs a component that fires some events.
When these events are 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 using AJAX) so this triggers the CLICK event of the button on the
server side, and this executes come code .
This code will fire some events at the server level ...
I want the client (user in its web browser) to "see" this events as they are
fired and react properly, let's say update a LABEL control as this events
are triggered and catched.
Please help me out here, you savvy people, because I'm stuck!
Later and thanks,
Mike
Teemu Keiski - 13 Sep 2007 18:44 GMT
ID is supposed to be ID="Label1". Sorry for the typo.

Signature
Teemu Keiski
AspInsider, ASP.NET MVP
http://blogs.aspadvice.com/joteke
http://teemukeiski.net
> Hi,
>
[quoted text clipped - 34 lines]
>
> Mike
Jonathan - 17 Sep 2007 22:12 GMT
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 the server-side processing 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?
> ID is supposed to be ID="Label1". Sorry for the typo.
>
[quoted text clipped - 36 lines]
> >
> > Mike
curnutte@gmail.com - 01 Oct 2007 01:14 GMT
On Sep 17, 2:12 pm, Jonathan <Jonat...@discussions.microsoft.com>
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,
[quoted text clipped - 55 lines]
>
> > > Mike
I have the exact same problem. Let me know if you ever track down an
answer.
Thanks,
John