Techniques for big applications?

  • Thread starter Thread starter Luis E Valencia
  • Start date Start date
L

Luis E Valencia

Whhich is the best technique for big applications?
Somebody told me he makes his connection datasets on components and the web
pages apart.


Any information about it
 
Hi,

It's better to follow MVC design pattern. MS got it own implementation
(UIP application block) which i found hard to use and not truly
compatible with MVC 2. there are several open source implementations
such as Maverick.

feel free to contact me on this subject via my e-mail

HTH

Natty Gur[MVP]

blog : http://weblogs.asp.net/ngur
Mobile: +972-(0)58-888377
 
to add some more details
you can have multiple layers as follows in your project

UI => UserInterface
UIPC => Userinterface Process Logic
DA => Data Access Components
DS => Dataset Projects
BF => Business Facades.

This will result in fast development and testing

Also VS.net 2003 allows you to design your own Enterprise templates for the
kind of Project structure shown above.

HTH
Regards
Ashish M Bhonkiya
 
Back
Top