473,769 Members | 6,926 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Larger scale web apps

Can anyone point me to some resources for larger scale web apps in asp.net?
I'm looking for application architectures, best practices, etc...

I've spent a lot of time googling this. Most of what I find is pretty
generic. Microsoft's own patterns and practices is pretty patchwork, with
lots of info on specific components like the enterprise library, but a lot
less (in fact, barely an overview) of overall application construction and
architectures.

The thing is, the whole drag and drop motif only gets you so far. I've
looked into projects like Monorail or castle project and they seem more
focused on rapid data driven functionality than large scale maintainability
and scalability.

What i'd really like to see is some well designed open source .NET apps,
and be able to learn from their techniques. Anyone know of any?
May 25 '07 #1
2 1531
KJ
You can check out Martin Fowler's Cruise Control application. That is a
pretty darn good one.

It's got ASP.NET, remoting, some WinForms, and so on.

http://studios.thoughtworks.com/cruisecontrol
"Erik Funkenbusch" <er**@despam-funkenbusch.com wrote in message
news:1f******** *******@funkenb usch.com...
Can anyone point me to some resources for larger scale web apps in
asp.net?
I'm looking for application architectures, best practices, etc...

I've spent a lot of time googling this. Most of what I find is pretty
generic. Microsoft's own patterns and practices is pretty patchwork, with
lots of info on specific components like the enterprise library, but a lot
less (in fact, barely an overview) of overall application construction and
architectures.

The thing is, the whole drag and drop motif only gets you so far. I've
looked into projects like Monorail or castle project and they seem more
focused on rapid data driven functionality than large scale
maintainability
and scalability.

What i'd really like to see is some well designed open source .NET apps,
and be able to learn from their techniques. Anyone know of any?

May 25 '07 #2


You can look at my thing here:

http://sholliday.space s.live.com/Blog/cns!A68482B9628 A842A!140.entry

The thing you can learn from this is how to use an IDataReader to populate
custom business objects.

Using the IDataReader is important, because its the quickest way to get
(multiple rows) of data.

By using the "Layouts", you get maintainability , and you avoid column
lookup.

dr.GetString( 0 )
vs
dr.GetString ["EmpID"]

But the way I do it, you don't do the column lookup, but you have a way to
keep it maintainable.
I need to do an article on optimistic locking using a RowVersion(time stamp)
column ....you'll have to search for this yourself now.
You can also learn how to do sorting using IComparer's there.
I am of the mindset, that if I need sorting, I should actually move this
into the business logic layer, instead of having the database do it.
Let the database give me the data as quick as it can (no sorting), and let
my biz layer handle that part.
Scalability is an art. You need experience and pick up tips here and there.
I'd say there isn't a blue print for it necessarily.

You can read this as well, for some birds eye view stuff:
http://www.codeproject.com/gen/desig...inessLogic.asp


"Erik Funkenbusch" <er**@despam-funkenbusch.com wrote in message
news:1f******** *******@funkenb usch.com...
Can anyone point me to some resources for larger scale web apps in
asp.net?
I'm looking for application architectures, best practices, etc...

I've spent a lot of time googling this. Most of what I find is pretty
generic. Microsoft's own patterns and practices is pretty patchwork, with
lots of info on specific components like the enterprise library, but a lot
less (in fact, barely an overview) of overall application construction and
architectures.

The thing is, the whole drag and drop motif only gets you so far. I've
looked into projects like Monorail or castle project and they seem more
focused on rapid data driven functionality than large scale
maintainability
and scalability.

What i'd really like to see is some well designed open source .NET apps,
and be able to learn from their techniques. Anyone know of any?

May 29 '07 #3

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

Similar topics

9
2424
by: limor | last post by:
Hi, I am considering using Python in a new testing tool application we intend to build for out product. I must get references before starting develope in this language , since although lots of good things are said about this language , I still have my doubts how can it compete with languages like C++ and Java. I have found te sytax and some features if the language not as problematic in maintenance prospective (although I keep reading...
48
2953
by: Bulba! | last post by:
I'll soon start development of a specialized small app and need to choose GUI for it. I have narrowed the choice to wxPython/PythonCard and QT/PyQT (buying commercial licenses is not a big problem, the company would pay for it). Which is better for this kind of application? I mean, looking from purely technological and long-term development aspects and ignoring licensing issues:
4
6609
by: codecraig | last post by:
Hi, I am using Tkinter and I have a Label and a Scale. I want to update my label everytime the Scale value changes. What is the best way of doing this? Do i have to bind for every event type? Or is there some better way? If I do have to bind each type of event to the scale, what types occur for a Scale? Thanks.
4
1517
by: iv | last post by:
Hello, I'm busy with a large application and feel it would eas my work if I can specify dependencies on the granularity of packages, rather than modules and classes. Eg: - By convention I do the one class per file thing. SO in python this means one class per module - naming classes after their modules. (this helps with version control, and several other little irritations, for example)
4
2292
by: Eyal Goren | last post by:
Hi, We have troubles when we try to use the 'dbuse' calls with databases larger than 28 characters, looks like the dbuse truncates the name after it. Any ideas ???
7
3707
by: gino | last post by:
Dear all, My monitor was set to 1600x1200 so the fonts in IE is too small for me even when I set the "View->Text Size->Largest"... I don't have previlage to change the monitor resolution... so I have to try to "hardcode" IE to display any webpage by a scale of 200%...
0
1070
by: Andrei | last post by:
I have been developing small applications to speed up certain tasks. First I have been using NetBeans(Java Sun) as my base language. Well the problem that I have reached was that I was not able to distribute my apps (30 kb) to the clients without the JVM(14mb). Trying to figure out how I could separate the JVM into libraries that I actually require. Not successful even though I used a bunch of different tools. Overhearing some rumor that...
0
1493
by: TonyJ | last post by:
Hello! We have a pc running a form application. If I push some buttons in this application I want to send some commands to a scale which is connected to a specific IP address. When I sent a command I also receive an answer from the scale. I want to communicate with the scale using TCP or UDP. The commands that can be sent to the scale are very short about 3 to 5 characters.
32
4579
by: rfox | last post by:
When viewed in several different browsers, both Mac and PC, my fonts are consistent in size -- EXCEPT when viewed in IE7. In IE7, the fonts appear larger. Is there a way to ensure consistency in size, such as specifying font-size in ems, pixels or points?
0
9423
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10214
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...
1
9996
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
9865
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
7410
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
6674
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5447
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3563
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2815
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.