Tagged Questions
0
votes
1answer
250 views
Global.asax Application_Start run on bin-folder update?
My question is quite simple..
What if I have an application.. and I start it, and then I assume that Application_Start will be hit..
But what if I during runtime add another assembly to the ...
0
votes
3answers
348 views
background thread in asp.net application
i run a background thread in Application_Start() in global.asax
to use it like windows service
but applicaton_end fire when all session is ended in my website
i have a sms Business that work with ...
0
votes
1answer
411 views
Global.asax events not firing for IHttpHandler
I've written a C# HttpHandler in VS2010 and want to do some initialisation in the application_start() event (e.g. set up logging etc.), but for some reason it isn't firing.
I've tried running against ...
0
votes
1answer
338 views
Azure Application_End not hit and Application_Start hits multiple times (a few minutes in between)
In my Azure environment I have a webrole with on the instances multiple websites. The Application_Start() method in global.asax in a WCF-project is called multiple times (a few minutes in between), ...
1
vote
1answer
165 views
Are these variables being garbage collected?
I am trying to get Quartz.net scheduler to work, but I don't know why it is not firing for jobs scheduled at a future date. I have tested with a cron trigger that fires every minute and it works (job ...
0
votes
1answer
575 views
Application_Start not behaving correctly in ASP.Net 4.0 Application
I'm stumped. I ran through all the recommendations on StackOverflow and Google... no joy.
My Application_Start method is not behaving correctly in my ASP.Net 4.0 application. I can set Application ...
0
votes
1answer
331 views
Start Application_Start again on a shared hosting?
I am on a shared hosting plan using asp.net mvc 3. In my Application_Start I start my Quartz scheduler and have some jobs run. However some don't seem to be running or something is wrong in them(but ...
0
votes
2answers
367 views
Changing Global.asax variables from IIS
Can I change access or edit the values specified in Global.asax from IIS?? The reason is that I don't have the source code and the only change we need right now is to change the connection strings ...
0
votes
3answers
599 views
Registering routes on session start not application start
I am trying to register the route collection in .net based on each session. The code I have works fine, you goto website/username and it loads the correct sub pages, but you have to restart the ...
1
vote
3answers
573 views
What code whould be placed in the application_start and the session_start events in global.asax?
Can you give an example of what might be best suited to place in the Application_Start and Session_Start subroutines?
I know when each subroutine is called.
Application_Start when the first user ...
39
votes
4answers
9k views
How can I use Server.MapPath() from global.asax?
I need to use Server.MapPath() to combine some files path that I store in the web.config.
However, since Server.MapPath() relies on the current HttpContext (I think), I am unable to do this. When ...
4
votes
1answer
1k views
Application_Start works fine on workstation, is not called when deployed
I have an application that works great on my development workstation but fails when the application is deployed to the live environment. It seems that Application_Start is not being called in the ...
5
votes
2answers
896 views
How can you hook a SharePoint 2007 feature into the Application_Start of a site?
I was wondering if there is a good way to hook into the Application_Start of a SharePoint 2007 site when developing a feature? I know I can directly edit the Global.asax file in the site root, but is ...