Raise Session_OnStart event from custom ASP.NET SessionStateProvider class
I'm working on an asp.net project that uses an in-house developed custom SessionStateProvider class. Evidently, the Session_OnStart event is not firing. I have code in Global.asax to handle the event. I can only get this code to execute by changing the Web.config to use the default SessionStateProvider. What must I do to make my Sess...