Re: [ADVANCED-DOTNET] Catching events in HTTP Module

2003-08-25 Thread Sujay Suresh Maheshwari
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)

Re: [ADVANCED-DOTNET] Catching events in HTTP Module

2003-08-22 Thread Wenfeng Gao
Sent by: "Moderated cc: discussion of advanced .NET Subject: [ADVANCED-DOTNET] Catching events in HTTP Module topics."

Re: [ADVANCED-DOTNET] Catching events in HTTP Module

2003-08-22 Thread Chad M. Gross
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

[ADVANCED-DOTNET] Catching events in HTTP Module

2003-08-22 Thread Sujay Suresh Maheshwari
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