So I have 2 pages that use. I need to validate 2 different check boxes.
Telerik.Windows.EventManager.RegisterClassHandler(typeof(RadUploadItem), RadUploadItem.ValidateEvent, new UploadValidateEventHandler(OnValidate));
So I guess I could put this on the master pages, but I have 2 different views that use a different upload control. How do I unregister the above command, so if I hit that page 10 times, I got 10 different event handlers it goes through.
Telerik.Windows.EventManager.RegisterClassHandler(typeof(RadUploadItem), RadUploadItem.ValidateEvent, new UploadValidateEventHandler(OnValidate));
So I guess I could put this on the master pages, but I have 2 different views that use a different upload control. How do I unregister the above command, so if I hit that page 10 times, I got 10 different event handlers it goes through.