London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
AI OnAI Off
London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
You need to add an event handler to handle the On publish page event for the EPiSever
In your page initializer add
DataFactory.Instance.PublishedPage += new PageEventHandler(Instance_PublishedPage);
This will create a handler as below
void Instance_PublishedPage(object sender, PageEventArgs e)
{
//put your code here
}