Hi all ,
I am starting to design my own CMS , and i want it to be modular to add more functionality later by me or by any other developer
I put my eyes on joomla CMS (very popular ,robust and extensible)
I want to make a CMS with asp.net to be just skeleton and all functions are done through components
Functions like :-
User management
Content Management ,editing and display etc.
My main idea is to let the skeleton to know from the query URL the required component and pass all other parameters to it and the component do the rest (parse parameters display results etc.)
the problem is how to achieve this how to call the component and and how to let it render its UI and pass it to the skeleton to put it in the appropriate place in the main site template
Please give me some practical advices not just theories