Is there a way to check if a page is being copied? an event ,Querystring or property?
We need to get the new page and do some changes to it before saving it, we need to do this for pages of a specific pagetype.
The Creating/Created event will be fired for the page beeing copied, but no events will fire for any children.
e.Page will be null if copying, so you can test for that to determine if it is a "real" create or a copy.
I check the type of e and look if it is a CopyPageEventArgs, that's working too.
But I have another problem, I need to change a property on the page that is copied but I can't find a way because e.page is null.
Has someone done that before?