Hi. moduls is being used for some sites when they are developing. what is this module. for example, this sites has some modules; membership module,comment module etc.Are modules a diffrent application that is added to site later, or they talk about httpmodules?
also, how can i begin this module design and coding?
Thankss.
Loading
sadiPosted Feb 3, 2011, 10:04 AM
Thanks again.
Jean PaulPosted Feb 3, 2011, 8:16 AM
I am not sure whether you are talking about Http Modules/WCSF Modules/Business Modules.
Anyway.. i think it is Business Modules in close probabilty.
Based on the project, we can categorize the classes into different modules. These modules would
be a class library assembly files usually. Later the aspx page will call the appropriate dlls to get things done.
We should make sure that manageability and reusability are two important things we achieve from business modules.
The resuability factor ensures the module can be reused in a windows forms application as well for example.
So the module should not contain Http or web references.
Seeking Http Modules reference - they are .NET components implementing the System.Web.IHttpModule interface,
they are mostly used for special system level purposes and rarely for business related needs.
Regards,
Jean Paul