global_asax application_Start and application_end

0
0

Hi,

How can I get what I was doing with WGX in Global_asax?
I want to handle the event Application_Start and Application_End

Thanks

 

  • You must to post comments
0
0

Add Global.asax it will work as in ASP.NET apps. However, Application_BeginRequest will be called only for HTTP requests.

In alternative to Application_Start you may also use the static constructor of Program.cs or the startup class you used in Default.json.

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.