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!
Add the following to Application_Start in global.asax.cs:
UnifiedDirectory.UnifiedDirectoryAdding += DirectoryAdding;
And create a method:
protected void DirectoryAdding(UnifiedDirectory sender, UnifiedVirtualPathEventArgs e)
{ .....do stuff.....}
How do I hook into the UnifiedDirectory.UnifiedDirectoryAdding event?
I want to do some actions when a file is added to the Filemanager. I've tried adding the event hookup to global.asax (application_onstart) and regular class.
Stig