473,769 Members | 3,872 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

ASP.NET modular architecture

Hi,

I'm in the process of conceptualizing a new ASP.NET application. I'm a
relative newbie in ASP.NET / .NET in general, so any comments will be
greatly appreciated.

Basically i need to make my application as modular as possible, something
along the lines of Mambo (PHP CMS System) Drupal (another PHP CMS) or
something similar to these. What I'm thinking is to provide the following
structure: core of the application includes essential services such as
Authentication, Access control, Database Connectivity and other services in
the same category. Other functionality, such as say for example Discussion
boards, Survey will be provided in modular format.

I need this kind of architecture in order to break up what i anticipate will
be a large project, and enable modules to be developed by 3rd parties
(basically I'm looking for something loosely coupled - to prevent
maintenance night mare further down the track)

Google failed to return any results relating to this topic... so if somebody
can please point me to the some resources on how the following architecture
can be technically accomplished in .NET, it will be really appreciated.

--
Kind regards,
Nick Goloborodko

http://www.nickgoloborodko.com
Nov 19 '05 #1
4 2309
Go try the free Apress book "Inside SharpDevelop":
http://www.apress.com/free/index.html

Good stuff.

--
Scott
http://www.OdeToCode.com/blogs/scott/

On Fri, 11 Mar 2005 01:36:15 +1300, Nick Goloborodko
<co******@parad ise.net.nz> wrote:
Hi,

I'm in the process of conceptualizing a new ASP.NET application. I'm a
relative newbie in ASP.NET / .NET in general, so any comments will be
greatly appreciated.

Basically i need to make my application as modular as possible, something
along the lines of Mambo (PHP CMS System) Drupal (another PHP CMS) or
something similar to these. What I'm thinking is to provide the following
structure: core of the application includes essential services such as
Authentication , Access control, Database Connectivity and other services in
the same category. Other functionality, such as say for example Discussion
boards, Survey will be provided in modular format.

I need this kind of architecture in order to break up what i anticipate will
be a large project, and enable modules to be developed by 3rd parties
(basically I'm looking for something loosely coupled - to prevent
maintenance night mare further down the track)

Google failed to return any results relating to this topic... so if somebody
can please point me to the some resources on how the following architecture
can be technically accomplished in .NET, it will be really appreciated.


microsoft.publi c.dotnet.framew ork.aspnet : a cut above the ASP.NET
forms!

Nov 19 '05 #2
Hi Nick,

Welcome to ASPNET newsgroup. As for the ASP.NET web application
artchitecture design, I'm not sure whether there are any buildin patterns
or practices on the "Modular based" pattern you mentioned. But there is a
3rd party framework "DotnetNuke " which provide a Modular based web portal
application framework. In DotNetNuke, most parts are designed as a Module.
The Windows SharePoint service(WSS) which use WebParts as different
plugable modules is also something like this.

Also, the "Modular based" design architecture is a horizential
architecture. The Microsoft Patterns & Practices provide many design
patterns and rules on verticle layers. Such as the in WEB LAYER, Business
Layer, Data Access Layer....

You can find many such resources in the MSDN's .net Architecture center

http://msdn.microsoft.com/architecture/

http://msdn.microsoft.com/library/en...DevEntArch.asp
?frame=true

If you have any other ideas, please feel free to post here. Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Nov 19 '05 #3
Hi Steven,

Thank you very much for your response - it has pointed me in the right
direction. I was aware of the DotNetNuke, but since I'm a relative newbie
to the whole .NET scene, it was a bit overwhelming to get a grasp of, and i
was wondering if there were any white papers describing the architectural
approach that they have taken.

Still, i will look into it a bit further. Once again thank you for your
reply.

--
Kind regards,
Nick Goloborodko

http://www.nickgoloborodko.com

Nov 19 '05 #4
You're welcome Nick,

Also, it would be nice that you share some further experience on the
modular web site designing when you've digged more further i DotnetNuke or
any other framework :)

Thanks & Regards,
Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Nov 19 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

14
3777
by: Hayden Kirk | last post by:
Hey guys I am about to write some back end software for my business. I want a system that I can create invoices, clients etc... I can do this no problem. However I want to write it in modules so its extendable in the future. Like someone else can write a module for it and it can plug stright into my system. I can't figure out a good way to do this in php. I was thinking of hooks or something, but PHP does not support this.
18
5642
by: Zero | last post by:
Hi, I am calculating an integer to the pwer of a large integer, e.g. 2^5000. It turns out that the result I always get is zero. I am sure that the result is too large to store in such type as u_int64_t and long int etc. My power function is as follows: for(i=0; i<5000; i++) result *= 2;
7
1581
by: Saso Zagoranski | last post by:
Hi! I mentioned this in my other post today but at that time I though I had it all figured out. When I got a reply regarding my other questing I saw that I don't :) Here's my problem: I would like to have an application where I would write the core and the users could write
12
2210
by: Don Huan | last post by:
Hi my job is to migrate our WinForms application to ASP.NET. This app was build very modular so every peace of code can be replaced by another "modul". There are 1 VS-solution with about 60 projects (dll's) in it. Now I have to design a Web-Client modul (actually the web-interface). To maintain the modularity, I thought of making one ASP.NET-Project inside of the solution and create some projects containing Custom Web Controls. Did...
26
4854
by: I_AM_DON_AND_YOU? | last post by:
This is the scenario: I have a VB.Net project comprising of a few Forms. On Form1 I have more than 20 buttons. There is a very lenghty code written in click event of each and every button. Right now I haven't used any sub procedure. I mean to say I am writing the code directly in the click event. So it's become very lengthy and therefore to figure out some problem or make any changes I have to scroll at lot. Also in addition to click...
20
6824
by: Tuvas | last post by:
I have made and recently posted a libary I made to do Modular Arithmetic and Prime numbers on my website at http://www.geocities.com/brp13/Python/index.html . I am currently in a crypotology class, and am working on building a RSA public key cryptology system for a class project. I am building the librarys just to get the experience to do so. However, I would ask if any of you know of any gaping security holes that can easily be seen from...
3
6766
by: DG | last post by:
Please correct me if i'm using a wrong term. I want to programm functionality and pack it to .dll Then, have an application look in 'modules' folder and depending on available .dll-s display available functionalities. What is term for this kind of programming, can you provide me with MSDN topic? Thanx.
22
2991
by: Wildemar Wildenburger | last post by:
To make it short: Is there something like this already? There seem to loads of python frameworks for Web-Apps, but I have a hard time finding one for desktop-apps. I imagine it wouldn't be too hard (if still time consuming) whipping up something simple myself, but I thought, I'd ask here before diving into it. greets wildemar
2
3481
by: Canice | last post by:
I'm working on a web application where 90% of it is common 'product' code an the other 10% is customer specific. I want some method of separating the customer specific presentation, business and data access layers from the product code as I don't the main product code to be bloated with customer specific code. Ideally I'd like to have one solution for the product and one for each customer. However I haven't found a way to separate the...
0
9579
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10206
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10035
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9984
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9851
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7403
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5293
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5441
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3556
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.