PM
To: [EMAIL PROTECTED]
Subject: Re: [ADVANCED-DOTNET] Catching events in HTTP Module
If your button is a server control, then you can find it out as follows.
public IAsyncResult BeginPreRequestHandlerExecute(Object sender,
EventArgs
e, AsyncCallback cb, Object extraData)
Sent by: "Moderated cc:
discussion of advanced .NET Subject: [ADVANCED-DOTNET]
Catching events in HTTP Module
topics."
I'm going to do my best here to assume what you are referring to and what
you are try to do. First, when you say "I have written a HttpModule and
am calling a method on context.PreRequestHandlerExecute" I am assuming you
are referring to adding your own event handler to the HttpApplication
PreRequ
Hi Group,
I have written a HttpModule and I am calling a method on
context.PreRequestHandlerExecute
Now this method will be called on all page load. Can I know the event
which called this page load. Rather if a user presses an Add button, can
I know that an add button is clicked.
May b