So, we are still attempting to isolate exactly when this file is generated. We are using SQL Server 2008 Express RC (thus not 2005, which apparently can cause the generation). However, we have a remote IT person that periodically backs up our site and redeploys it. I think it's this scenario that causes app_offline's generation.
Anyways, while one of us are working, it's no problem to open up the project and delete this file. However, I'm going to be going back to school quite soon and I don't want to have to get calls at 7am letting me know the site is down and it needs to be fixed immediately.
Here are a couple useful links. I've fairly scoured the web (and stackoverflow) for information, but no one seems to know how to make IIS ignore this file, or delete it upon generation.
http://www.beansoftware.com/ASP.NET-Tutorials/Restart-Stop-Application.aspx
Meanwhile, we will continue attempting to isolate the instances when it is generated.
Thank you
EDIT: Found this: App_Offline in MSBuild Remote Web Deploy
Which includes:
"Now that our app is published we need to delete the app_offline.htm file from the dest web app. The msdeploy.exe command would be:
%msdeploy% -verb:delete -dest:contentPath="{IIS-Path}/app_offline.htm",computerName="...",username="...",password="..."
This is implemented inside of the DeleteAppOffline target. This target will automatically get executed after the publish because I have included the attribute AfterTargets=”MSDeployPublish”. In that target you can see that I am building up the msdeploy.exe command directly, it looks like the MSDeploy task doesn’t support the delete verb."
But I still don't know where to put this