Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Event Error
Message
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Title:
Miscellaneous
Thread ID:
01398902
Message ID:
01398907
Views:
51
ALWAYS check whether anything is actually wired up to consume the event:
   protected virtual void OnSortOrderChanged(SortOrderEventArgs e)
    {
       if (SortOrderChanged != null)
        SortOrderChanged(this, e);
    }
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform