Archive for March, 2007
Building a Module for sitefinity (part 2) : The concept
Module is integrated in Sitefinity modules section as an assembly. This means that in order to create your own module you need to create a new C# project (Class library). The core class in this module you will name any way that you find suitable (for example : ListModule, MyModule…), but the important thing here [...]
Read Full Post | Make a Comment ( 6 so far )How to get reference to Control Panel from Command Panel (Building Modules)
The main purpose of the Command Panel (left part of the screen) in the module is to modify Control panel (right part of the screen) in some way – set property, call a method etc. In order to get the reference to the Control Panel you can use following code in the Command Panel :
ControlPanel [...]
Building a Module for sitefinity (part 1)
What is a Sitefinity Module?
Modules are quite probably the most powerful feature of Sitefinity. They allow you to extend Sitefinity in any way you need it to be extended. Need a image gallery on your site? How about blog aggregation tool? Or maybe product catalog? All this you can do by taking advantage of Sitefinity. [...]