I\'m writing an app where 3rd party vendors can write plugin DLLs and drop them into the web app\'s bin directory. I want the ability for these plugins to be able to registe
This worked for me for dynamic registration.
RegisterModule(typeof(RequestLoggerModule)); public class RequestLoggerModule : IHttpModule { ... }
https://docs.microsoft.com/en-us/dotnet/api/system.web.httpapplication.registermodule?view=netframework-4.7.2