I'm not sure what an Event is. If you look at a vB script, php page, you will see 'hooks' scattered throughout. Those are places you may insert your own php code through the use of plugins. You may want to read up on Products and Plugins in the manual.
well in .NET every time a page load.......events are fired....
like there is a Page_Init event, Page_Load, Page_PreRender, etc...
you can wire up methods to those events....
something like
Code:
override protected void OnInit()
{
this.PreRender += new EventHandler(this.Page_PreRender);
}
void Page_PreRender()
{
throw new Exception("Your Method Executed!");
}
So when the page is loading...your function will execute...when that event fires.