Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 999611
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T07:22:54+00:00 2026-05-16T07:22:54+00:00

How Many Times Does an ASP .NET Application Start? I want to run something

  • 0

How Many Times Does an ASP .NET Application Start?

I want to run something once per AppDomain (specifically RegisterRoutes). If I put the code I want to execute in the global.asax in Application_Start, everything’s good (or so it seems) and the code seems to only execute once.

But If I have a custom HTTP Module registered in the web.config that does the following:

public class SomeHttpModule:IHttpModule
{
    public void Init(HttpApplication context)
    {
        new SomeRunner().Run();
    }

    public void Dispose()
    {
    }
}

public class SomeRunner
{
    private static object syncLock = new object();
    private static bool hasRun;

    public void Run()
    {
        lock(syncLock)
        {
            if (!hasRun)
            {
                hasRun = true;
                RegisterRoutes();
            }
        }
    }

    public void RegisterRoutes()
    {
        // Register MVC Routes
    }
}

When I hit “go” in Visual Studio, my debugger stops at my breakpoint at the first line of the Run method…but lo and behlold if I check the RouteTable.Routes collection…the MVC routes have already been registered (meaning RegisterRoutes must have already been called)…even though hasRun is false!

Is this some sort of oddness running in Visual Studio debugging an IIS website? I know that IIS can host two HttpApplications in one AppDomain and that would have SomeHttpModule get Init’d twice in the same AppDomain…right? But how would my static bool hasRun still possibly be false???

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T07:22:54+00:00Added an answer on May 16, 2026 at 7:22 am

    A web application can be started many times. The application can be closed down whenever IIS thinks that it’s not used, and when the next request comes in the application will start again.

    Also, the application might be set to recycle daily, in that case it would start at least once a day.

    I’m not sure why the application is started twice when you are debugging it, but it might have something to do with how the debugger is attached to the process.

    The reason that the static variable doesn’t survive from one instance of the application to the next, is that they are separate instances. When the application starts again, it starts with it’s own set of variables. It starts in a completely new virtual address space, so there is nothing left from the previous instance.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a ASP.NET Web Forms application that internally makes many SOAP and REST
We actually have burned static/archived copies of our asp.net websites for customers many times.
I'm trying to run an ASP.NET 2.0 application on an XP machine. As far
Many times i run time consuming PHP scripts that echo status updates like 'batch
How many times have you seen someone trying to Log the command I run
I have read so many times, here and everywhere on the net, that mutexes
We are developing a web application using asp.net and sql server. We are required
I'm having a serious problem with my ASP.NET AJAX application. There is a javascript
I'm wanting to find out how many requests/sec my asp.net mvc site (and asp.net
I've got an asp.net page that has c# code-behind that does some stuff in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.