.NET is the big producer of "framework" jargon. The idea behind a framework is to make the life of a developer easier. A framework provides the programmer with ready-made solutions to common problems. For example, what if you, as a programmer, had to develop a big application? You would need to consider security, distribution, versioning, object persistence, database interface, documentation, etc. A framework will provide an already-developed solution for each of these considerations. In effect, the programmer doesn't have to "think about it," it is already built-in to the programming environment. By addressing the considerations at code level the programmer gets a big jump on future work because the framework will "take care" of all the grunt work for you.

The downside is that it increases the learning curve dramatically. Instead of learning the language, you now must also learn the framework. If you are dealing with a "framework" language, like .NET, you must adhere to the framework rules. Throw away all you ideas about how you *used* to do things! You must now follow the framework for things to work properly. If you ever shifted from VB .OLD to VB .NET you will know what I mean...

There is a very good explanation of framework thinking in "Introducing .NET" by David S. Platt.


In reply to Re: What is a framework? by oopplz
in thread What is a framework? by Sprad

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.