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

This is something I've pseudo-solved many times and have never quite found a solution
Many times I have seen Visual Studio solutions which have multiple projects that share
Many times we find ourselves working on a problem, only to figure out the
Many times, a Java app needs to connect to the Internet. The most common
Many times I've seen links like these in HTML pages: <a href='#' onclick='someFunc(3.1415926); return
Many times I will use the same font scheme for static text in a
Many times I saw logging of errors like these: System.out.println(Method aMethod with parameters a:+a+
Many times when I read books related to CSS I see things like this
I've heard many times that all programming is really a subset of math. Some
In order to know how many times a pattern exists in current buffer, I

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.