Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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: ...
    5. 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...
  3. #2

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139