[SOLVED] WiseJ 1.3.13 Application_ApplicationStart() event is not fired

Answered Closed
0
0

Hello,

seems to be that the event is no longer fired.
A workaround from me start the App in the static Main.
Is this an error or must I do something else?

static void Main()
{
Application.BeginRequest+=Application_BeginRequest;
Application.EndRequest+=Application_EndRequest;
Application.ApplicationStart+=Application_ApplicationStart;
Application.ApplicationRefresh+=Application_ApplicationRefresh;
Application.HashChanged+=Application_HashChanged;
Application.ResponsiveProfileChanged+=Application_ResponsiveProfileChanged;
Application.SessionTimeout+=Application_SessionTimeout;
Application.ApplicationExit+=Application_ApplicationExit;

// Call direct
Application_ApplicationStart(null,null);

  • You must to post comments
Best Answer
0
0

Kay,

it´s fixed in 1.3.14 (just released).

Best regards
Frank

  • You must to post comments
0
0

Hi Kay,

thanks, it sounds like a regression, logged as WJ-7820.

We´ll check, fix and then inform you.

Best regards
Frank

  • You must to post comments
Showing 2 results