As title says, is it possible to implement callbacks in standard classes? These are not views, I am not going with the custom view route. And when writing custom views i add them from the designer.
The problem i'm facing is that if i use the Module Name directly (Main, for example) CallSub works, but i don't know how to reference the module.
I tried passing "Me", or the name of another module in the initialization but inspecting the parameter always shows up "not initialized".
I tried initializing the class both in Application_Start (after loading the layout) and in The main page resize event.
Is it possible at all?