Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Hello,
You could log file access in the UnifiedFileTransmitting event in Global.asax or in an IInitializableModule.
UnifiedFile.UnifiedFileTransmitting += new UnifiedFileEventHandler(OnUnifiedFileTransmitting);
protected void OnUnifiedFileTransmitting(UnifiedFile sender, UnifiedVirtualPathEventArgs e)
{
}
Hello
I need to log all user access to files (.zip files for example), just a simple log access counter. Problem is I can't seem to find anyway to hook up to a relevent event. Anyone got any ideas or workarounds?
//Regards Patrik