views:

57

answers:

1

how can i run code when an application ends with asp.net mvc ?

+2  A: 

Use this method in Global.asax

protected void Application_End()
{
}
tdelev
hahaha i ve been trying Application_Finish thx man
Yassir