473,399 Members | 4,254 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,399 software developers and data experts.

Do most of Fortune 500 companies use OOP with ASP.Net 2.0?

Hi ALL,
I was told that most Fortune 500 companies use OOP in conjunction with
ASP.Net 2.0. Personally, I find this hard to believe, unless the class
libraries being created are going to be used over and over. But what about
instances where the web application is designed to be stand-alone. Isn't
this a waste of effort to create classes, datamappers, etc.??? IMHO, OOP
adds about 50% on to the development time for any given project, with no
obvious payback in increased productivity.

Can someone please set me straight on this?

TIA, Randy Smith
May 1 '07 #1
6 3368
asking what fortune 500 do is meanless. they are so large they use very
tool and technology well and badly.

a better question is what do skilled .net developers do. as .net is
designed for implementing OOA/OOP applications, thats what they do.
there is no reason for OOP design to be slower and combined with test
first leads to quicker and more stable projects.

of course any technology you do not understand or are not proficient at
will take longer. That does no mean its bad. while UI applications are
generally easier with OOP, if your apps are procedural, or you are
mostly using declarative (another new trend) then no need to switch.
-- bruce (sqlwork.com)

Randy Smith wrote:
Hi ALL,
I was told that most Fortune 500 companies use OOP in conjunction with
ASP.Net 2.0. Personally, I find this hard to believe, unless the class
libraries being created are going to be used over and over. But what about
instances where the web application is designed to be stand-alone. Isn't
this a waste of effort to create classes, datamappers, etc.??? IMHO, OOP
adds about 50% on to the development time for any given project, with no
obvious payback in increased productivity.

Can someone please set me straight on this?

TIA, Randy Smith

May 1 '07 #2
Most large organizations that are well-managed from an IT perspective employ
customized OOP -oriented frameworks for both web and non-web based
applications. Once you have a well-designed framework built and tested, you
can SUBTRACT that "50%" of the time it takes to build a new app.
Peter

--
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
Short urls & more: http://ittyurl.net


"Randy Smith" wrote:
Hi ALL,
I was told that most Fortune 500 companies use OOP in conjunction with
ASP.Net 2.0. Personally, I find this hard to believe, unless the class
libraries being created are going to be used over and over. But what about
instances where the web application is designed to be stand-alone. Isn't
this a waste of effort to create classes, datamappers, etc.??? IMHO, OOP
adds about 50% on to the development time for any given project, with no
obvious payback in increased productivity.

Can someone please set me straight on this?

TIA, Randy Smith
May 1 '07 #3
You are almost right that OOP adds 50% on development time.

Almost because OOP reduces maintenance time by (probably) 90%. And on any
relatively big project development time is negligent comparing to
maintenance time. Users always want to add features, fix bugs, .....
All numbers come from my experience. I had written internet store
mspiercing.com 2 years ago (took about 2 month). Still improving/rewriting
some of it. Of course it's on and off but now I wish that I did some code
right instead of cutting corners.

And with big companies where there are more than one person works on a
project maintainability is a live and death.
George.
"Randy Smith" <rs****@cta.orgwrote in message
news:u9**************@TK2MSFTNGP03.phx.gbl...
Hi ALL,
I was told that most Fortune 500 companies use OOP in conjunction with
ASP.Net 2.0. Personally, I find this hard to believe, unless the class
libraries being created are going to be used over and over. But what
about instances where the web application is designed to be stand-alone.
Isn't this a waste of effort to create classes, datamappers, etc.???
IMHO, OOP adds about 50% on to the development time for any given project,
with no obvious payback in increased productivity.

Can someone please set me straight on this?

TIA, Randy Smith

May 1 '07 #4
I was told that most Fortune 500 companies use OOP in conjunction with
ASP.Net 2.0. Personally, I find this hard to believe, unless the class
libraries being created are going to be used over and over. But what
about instances where the web application is designed to be stand-alone.
Isn't this a waste of effort to create classes, datamappers, etc.???
IMHO, OOP adds about 50% on to the development time for any given project,
with no obvious payback in increased productivity.

Can someone please set me straight on this?
I likely can't set you straight. But can offer random opinions... ;o)

I think OOP and .net are great when you need to create large enterprise web
applications.

However for general web sites, I think OOP and .net is often overkill. There
*is* a reason that PHP and the like are so popular for web work. Sometimes
the old ASP-scripting method is the right solution for a project.

George brings up maintenance, which I agree with. However, a lot of web site
projects are rewritten every several years anyways, so long-term maintenance
may not be as big of an issue.

_Darrel
May 1 '07 #5

The cost of software is in MAINTENANCE, not development.

Internal Frameworks, developed correctly and over time begin to save your
company alot of time/money.

OO isn't just

class Bird : IAnimal

There are design patterns used to create a common methodology, and most of
these have maintenance in mind.

The more/better thought you put into an application at the start, even
stand-alone ones, the more it pays off later.

Its NEVER a waste of time to develop good code from the get go. The moment
you gotta go in and tweak something, all that upfront work pays off.

This is why I can't (or choose not to) work for most outsource companies.
The ones I've interviewed with seem more interested in RAPID development,
not good development.
I speak only from the direct experience I've had.

Google "software maintenance costs" and see what you come up with, and how
much of the overall pie it costs.
I would take a look at this book:
http://www.apress.com/book/bookDisplay.html?bID=279

It does a good job of mapping out what Framework pieces are, esp
The Domain-Specific Framework Layer vs

Cross-Domain Framework Layer

framework pieces.

...


"Randy Smith" <rs****@cta.orgwrote in message
news:u9**************@TK2MSFTNGP03.phx.gbl...
Hi ALL,
I was told that most Fortune 500 companies use OOP in conjunction with
ASP.Net 2.0. Personally, I find this hard to believe, unless the class
libraries being created are going to be used over and over. But what
about
instances where the web application is designed to be stand-alone. Isn't
this a waste of effort to create classes, datamappers, etc.??? IMHO, OOP
adds about 50% on to the development time for any given project, with no
obvious payback in increased productivity.

Can someone please set me straight on this?

TIA, Randy Smith


May 1 '07 #6
This is why I can't (or choose not to) work for most outsource companies.
The ones I've interviewed with seem more interested in RAPID development,
not good development.
In an ideal world (IMHO) most projects would be developed/designed rapidly
and then rewritten properly for release.

-Darrel
May 1 '07 #7

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

Similar topics

5
by: Adelein and Jeremy | last post by:
I have recently completed a mini-project with the goal of rewriting in Python Eric Raymond's fortune.pl script (http://www.catb.org/~esr/fortunes/fortune.pl-unconfuse-apache), except that instead...
0
by: Chuck | last post by:
Can someone let me know the name of a companies that provide first tier support. I have an Access application that I have sold to 12 companies here in the area and I was thinking about selling...
0
by: Griffith Jones | last post by:
Does anybody have an opinion on how widely Swing apps are accepted in Fortune 500 companies? My client -- a small IT secruity outfit, is considering revamping their flagship product, a Swing...
0
by: gautamlixir | last post by:
HI EDS(ELECTRONIC DATA SYSTEMS)-A SOFTWARE GIANT(FORTUNE 100) LOCATED IN PUNE AND CHENNAI IS RAMPING UP ITS STRENGTH. THERE IS AN URGENT OPENING FOR 300 DOTNET PROFESSIONALS IN THESE 2 LOCATIONS....
0
by: fahadoman | last post by:
Our company is mostly using J2EE to develop Applications. I want to convince that ASP .Net is not less then J2EE to my mangers. I want a list of big companies. Preferably in Telecommunication...
3
nabh4u
by: nabh4u | last post by:
i have a program where i have to use gale shapley's algorithm to match companies and persons. i create preference lists for both companies and persons. i am almost done but i am not getting the...
3
by: Steve Holden | last post by:
I know there are quite a few hosting companies now who represent themselves as Python-friendly. Rather than trawl through the Wiki pages, however, and email each one separately I am sending this...
0
by: nivedita | last post by:
Bangalore ========= http://list-jobs.blogspot.com/2007/06/bangalore-companies-and-consultants.html Chennai ======= http://list-jobs.blogspot.com/2007/06/chennai-companies-and-consultants.html...
0
by: carlwuhwdmckay | last post by:
wheel of fortune crack http://cracks.00bp.com F R E E
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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,...
0
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,...
0
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...
0
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...

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.