I've built an ASP.NET User Control that is essentially a "wrapper" for a jQuery menu. Here an example implementation of my control:
<wp:MenuMobile ID="MenuMobile" runat="server" DisplayMode="Custom" SearchMode="true" FuzzySearch="false" SearchParent="SearchResults" RankMode="Alphabetical" DebugMode="true" />
There's now a growing number of properties connected to a new search feature I've implemented:
SearchMode FuzzySearch SearchParent RankMode
And I'm about to implement yet another one.
I got to wondering if there is a way to group these properties together in a more organized way, something akin to: Search.Mode, Search.Fuzzy, Search.Parent, etc.
Is there a way?
Robert
Go to the complete details ...