Hi,
you'd know that if you'd have the processing in OnPreRender (when you know
which have been raised and which don't). Other way is to manually check
Request.Form collection if there would be ImageButton in the form post
collection data. You can't impact on order of the events.
--
Teemu Keiski
MCP, Microsoft MVP (ASP.NET), AspInsiders member
ASP.NET Forum Moderator, AspAlliance Columnist
http://blogs.aspadvice.com/joteke [quoted text, click to view] "jorge" <anonymous@discussions.microsoft.com> wrote in message
news:uYXv4YcQEHA.3524@TK2MSFTNGP09.phx.gbl...
> Hello
>
> I have the following situation: (everything is dynamic (controls.add))
>
> 1. Button.Init {
> WasButtonClickFired = true
> }
>
> 2. TextBox.TextChanged {
> WasButtonClickFired?
> }
>
> 3. ImageButton.Click {
> }
>
>
> I need a way to get the TextChanged event not to fire or at least to know
if
> the Click event of a button has been fired.
>
> Thanks.
> / jorge
>
>
>
>