"Btw, you can inherit a class (in your case Global.asax) from more than one classes or interfaces"
I don't get this point.
My goal is to attach the event in an indipendent way, so another developer doesn't have to care about it. If I change the inherit class in global.asax this will not be compatible with third party indipendet changes.
Error Handling
I'm trying to add a custom error handler that should fire every time there is an application error
{ public class ErrorHandling : ApplicationEventHandler {
}
The event is binded (the code is executed on start) but the event doesn't fire...
Umbraco version 6.1.6
PS: I' don't want to change global.asax inherit class if possible (this meant to be part of a pluggable package)
Thank you
I had same problem while ago and searched everywhere but did not find a solution apart from changing the Global.asax.
Btw, you can inherit a class (in your case Global.asax) from more than one classes or interfaces,
"Btw, you can inherit a class (in your case Global.asax) from more than one classes or interfaces"
I don't get this point.
My goal is to attach the event in an indipendent way, so another developer doesn't have to care about it. If I change the inherit class in global.asax this will not be compatible with third party indipendet changes.
is working on a reply...