Ask a Question related to ASP.NET General, Design and Development.
-
William F. Robertson, Jr. #1
Application events
Is it possible to wire another event handler to the Application events?
If so, how can I gain access to the events for the Application.
thanks,
bill
William F. Robertson, Jr. Guest
-
Passing Application Data/Events
I have been playing around with a few things, and one thing I noticed in the sample application is that there is a master application and each of the... -
dllimport call in aspnet application makes the application hangs
As our application design requires us to use one of the validation API engine which was written on C(so basically all I have is a dll) and I tested... -
Under what context Application events run in Global.asax
(I am running .NET Framework 1.1) I have a timer(System.Timers.Timer) running in my Global.asax page. In the timer.elapsed event I am trying to... -
raising EIF events to WMI from within an ASP application
I am encountering a problem raising WMI events from an asp.net application. The error received (as captured in the event log) is as follows: ... -
What issue will HIT me hard when I convert an Access 2002 MDE application to Web Application?
Hi All, Current Access 2002 MDE application: - has no tier - has neither business object nor any kind of object (Except MS Form object and... -
Cowboy \(Gregory A. Beamer\) #2
Re: Application events
Yes and no.
It kind of depends on what you are talking here. There are certain events
that you will have to poke fairly deep to alter. For most of the events,
however, you can change the handler quite easily. Note, however, that VS.NET
will sometimes "correct" your changes, esp. if you poke with code in the
region that .NET tells you not to dink with (the generated code). You can
always compile outside the IDE if you are really stepping outside the box.
Another possible solution is to make static (Shared = VB.NET) methods and
fire them from the standard events wired to the application. This allows you
to reuse code more efficiently without adding a lot of object instantiation.
--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
Author: ADO.NET and XML: ASP.NET on the Edge
************************************************** **************************
****
Think Outside the Box!
************************************************** **************************
****
"William F. Robertson, Jr." <wfrobertson@kpmg.com> wrote in message
news:O58vg2LQDHA.4024@tk2msftngp13.phx.gbl...> Is it possible to wire another event handler to the Application events?
>
> If so, how can I gain access to the events for the Application.
>
> thanks,
>
> bill
>
>
Cowboy \(Gregory A. Beamer\) Guest



Reply With Quote

