Is it possible to create an action handler that is triggered when an XSLT transform is performed? If so, how should this be done or is this a matter of modifying the source to tie in with the actual transformation process?
Best I could suggest, if you are wanting to run some .NET code from XSLT is to create an XSLT Extension and register it in xsltExtensions.config. Then you can just call it from within your XSLT.
Action handler for XSLT transform
Is it possible to create an action handler that is triggered when an XSLT transform is performed? If so, how should this be done or is this a matter of modifying the source to tie in with the actual transformation process?
Hi Janusz,
I'm don't think one exists (unless there is an undocumented event I'm not aware of).
You can find a list of all events here:
http://our.umbraco.org/wiki/reference/api-cheatsheet/using-applicationbase-to-register-events/overview-of-all-events
Best I could suggest, if you are wanting to run some .NET code from XSLT is to create an XSLT Extension and register it in xsltExtensions.config. Then you can just call it from within your XSLT.
Matt
is working on a reply...