Microsoft .NET

No holds barred discussion. Someone train you and steal your rare spawn? Let everyone know all about it! (Not for the faint of heart!)

Moderator: TheMachine

Post Reply
User avatar
Aslanna
Super Poster!
Super Poster!
Posts: 12560
Joined: July 3, 2002, 12:57 pm

Microsoft .NET

Post by Aslanna »

Since the other thread got lost.. I was perusing my eBooks and came across one on .NET. maybe it has a little more information for those wanting to know.
What the Heck Is .NET, Anyway?

The server-side features of Microsoft .NET run on Windows NT, Windows 2000, and Windows XP
Professional. The client-side features run on these plus Windows 98, Windows Me, and Windows
XP Home. While it's currently an add-on service pack, later versions of .NET will probably
be made part of the operating system. Later versions may or may not be announced to allow at
least portions of it to run on other versions of Windows or, as we shall see, perhaps for
other operating platforms as well. Microsoft .NET provides the following services, all
discussed later in this book.

A new run-time environment, the .NET Framework. The .NET Framework is a run-time
environment that makes it much easier for programmers to write good, robust code quickly,
and to manage, deploy, and revise the code. The programs and components that you write
execute inside this environment. It provides programmers with cool run-ime features such
as automatic memory management (garbage collection) and easier access to all system
services. It adds many utility features such as easy Internet and database access. It also
provides a new mechanism for code reuse—easier to use and at the same time more
powerful and flexible than COM. The .NET Framework is easier to deploy because it doesn't
require registry settings. It also provides standardized, system-level support for versioning.
All of these features are available to programmers in any .NET-compliant language. I
discuss the .NET Framework in Chapter 2.


A new programming model for constructing HTML pages, named ASP.NET. Even
though intelligent single use programs are on the rise, most Internet traffic for the near-to
middle-term future will use a generic browser as a front end. This requires a server to
construct a page using the HTML language that browsers understand and can display to a
user. ASP.NET (the next version of Active Server Pages) is a new environment that runs on
Internet Information Services (IIS) and makes it much easier for programmers to write code
that constructs HTML-based Web pages for browser viewing. ASP.NET features a new
language-independent way of writing code and tying it to Web page requests. It features
.NET Web Forms, which is an event-driven programming model of interacting with controls
that makes programming a Web page feel very much like programming a Visual Basic form.
ASP.NET contains good session state management and security features. It is more robust
and contains many performance enhancements over original ASP. I discuss ASP.NET in
Chapter 3.

A new way for Internet servers to expose functions to any client, named XML Web
services. While generic browsers will remain important, I think that the future really belongs
to dedicated applications and appliances. The Web will become more of a place where,
instead of data being rendered in a generic browser, a dedicated client (say, Napster, for
music searching) will make cross-Internet function calls to a server and receive data to be
displayed in a dedicated user interface or perhaps without a user interface at all for
machine-to-machine communications. Microsoft .NET provides a new set of services that
allows a server to expose its functions to any client on any machine running any operating
system. The client makes calls to the server using the Internet's lowest common
denominator of XML and HTTP. A set of functions exposed in this manner is called an XML
Web service. Instead of sitting around waiting for customers to see the light and embrace
the One True Operating System (Hallelujah!), the new design seems to say, "Buy our
operating system because we provide lots of prefabricated support that makes it much
easier to write applications that talk to anyone else in the entire world, no matter what or
where they're running." I discuss XML Web services in Chapter 4.

Windows Forms, a new way of writing rich client applications using the .NET
Framework. A dedicated client application that uses XML Web services needs to provide a
good user interface. A high-quality interface can provide a much better user experience, as
the dedicated interface of Microsoft Outlook is better than the generic Web user interface of
Hotmail. Microsoft .NET provides a new package, called .NET Windows Forms, that makes
it easy to write dedicated Windows client applications using the .NET Framework. Think of
Visual Basic on steroids, available in any language, and you'll have imagined the right
model. I describe .NET Windows Forms in Chapter 5.

ADO.NET, which provides good support for database access within the .NET
Framework. No Internet programming environment would be complete without some
mention of database access. Most Internet programs, at least today, spend most of their
time gathering information from a client, making a database query, and presenting the
results to the client. .NET provides good support for database operations using ADO.NET. I
cover ADO.NET in Chapter 6.

Outstanding support for handling XML documents and streams. Operating in the
modern distributed computing environments requires applications to handle XML. The .NET
Framework contains outstanding support for writing applications that handle XML documents
and streams. I discuss XML in Chapter 7.

A standardized mechanism for signaling asynchronous events. Providing a
standardized mechanism for callbacks from a server to its client was a large stumbling block
in pre-.NET COM-based programming. The .NET Framework provides a standardized
mechanism for one party to make an asynchronous call to another. I discuss this eventing
mechanism in Chapter 8.

Support for writing multithreaded code. The Windows operating system acquired
preemptive multithreading in 1993 with the release of 32-bit Windows NT. Unfortunately,
multithreaded programs have been difficult to write due to the low level of support from the
operating system. The .NET Framework contains much more support for allowing everyday
programmers to make use of the operating system's multithreading capabilities. I discuss
threading in Chapter 9.

Support for writing your own Windows Forms and Web Forms controls. The concept of
a control, a prepackaged unit of functionality dealing with a user interface, has been
fantastically successful. Both Windows Forms (Chapter 5) and ASP.NET Web Forms
(Chapter 3) get most of their functionality from their ability to host controls. .NET also
provides excellent support for users to develop their own controls, either for internal use or
for sale to third parties. Chapter 10 and Chapter 11, respectively, discuss writing Windows
Forms controls and Web Forms controls.
Introducing Microsoft .NET, Second Edition
David S. Platt
Microsoft Press
Have You Hugged An Iksar Today?

--
User avatar
Bubba Grizz
Super Poster!
Super Poster!
Posts: 6121
Joined: July 3, 2002, 12:52 pm
Gender: Male
Location: Green Bay, Wisconsin

Post by Bubba Grizz »

All I can think of is having this illustrated with Dilbert as the narrator.
User avatar
emmer
Almost 1337
Almost 1337
Posts: 612
Joined: July 23, 2002, 5:30 pm

Post by emmer »

As an experienced .NET guru, I've found the linked document to be of especially educational importance (right-click and save as!).

Everything you need to know about .NET
Sometimes
Gets Around
Gets Around
Posts: 57
Joined: December 31, 2002, 1:32 am

Re: Microsoft .NET

Post by Sometimes »

Aslanna wrote:Since the other thread got lost.. I was perusing my eBooks and came across one on .NET. maybe it has a little more information for those wanting to know.
What the Heck Is .NET, Anyway?

The server-side features of Microsoft .NET run on Windows NT, Windows 2000, and Windows XP
Professional. The client-side features run on these plus Windows 98, Windows Me, and Windows
XP Home. While it's currently an add-on service pack, later versions of .NET will probably
be made part of the operating system. Later versions may or may not be announced to allow at
least portions of it to run on other versions of Windows or, as we shall see, perhaps for
other operating platforms as well. Microsoft .NET provides the following services, all
discussed later in this book.

A new run-time environment, the .NET Framework. The .NET Framework is a run-time
environment that makes it much easier for programmers to write good, robust code quickly,
and to manage, deploy, and revise the code. The programs and components that you write
execute inside this environment. It provides programmers with cool run-ime features such
as automatic memory management (garbage collection) and easier access to all system
services. It adds many utility features such as easy Internet and database access. It also
provides a new mechanism for code reuse—easier to use and at the same time more
powerful and flexible than COM. The .NET Framework is easier to deploy because it doesn't
require registry settings. It also provides standardized, system-level support for versioning.
All of these features are available to programmers in any .NET-compliant language. I
discuss the .NET Framework in Chapter 2.


A new programming model for constructing HTML pages, named ASP.NET. Even
though intelligent single use programs are on the rise, most Internet traffic for the near-to
middle-term future will use a generic browser as a front end. This requires a server to
construct a page using the HTML language that browsers understand and can display to a
user. ASP.NET (the next version of Active Server Pages) is a new environment that runs on
Internet Information Services (IIS) and makes it much easier for programmers to write code
that constructs HTML-based Web pages for browser viewing. ASP.NET features a new
language-independent way of writing code and tying it to Web page requests. It features
.NET Web Forms, which is an event-driven programming model of interacting with controls
that makes programming a Web page feel very much like programming a Visual Basic form.
ASP.NET contains good session state management and security features. It is more robust
and contains many performance enhancements over original ASP. I discuss ASP.NET in
Chapter 3.

A new way for Internet servers to expose functions to any client, named XML Web
services. While generic browsers will remain important, I think that the future really belongs
to dedicated applications and appliances. The Web will become more of a place where,
instead of data being rendered in a generic browser, a dedicated client (say, Napster, for
music searching) will make cross-Internet function calls to a server and receive data to be
displayed in a dedicated user interface or perhaps without a user interface at all for
machine-to-machine communications. Microsoft .NET provides a new set of services that
allows a server to expose its functions to any client on any machine running any operating
system. The client makes calls to the server using the Internet's lowest common
denominator of XML and HTTP. A set of functions exposed in this manner is called an XML
Web service. Instead of sitting around waiting for customers to see the light and embrace
the One True Operating System (Hallelujah!), the new design seems to say, "Buy our
operating system because we provide lots of prefabricated support that makes it much
easier to write applications that talk to anyone else in the entire world, no matter what or
where they're running." I discuss XML Web services in Chapter 4.

Windows Forms, a new way of writing rich client applications using the .NET
Framework. A dedicated client application that uses XML Web services needs to provide a
good user interface. A high-quality interface can provide a much better user experience, as
the dedicated interface of Microsoft Outlook is better than the generic Web user interface of
Hotmail. Microsoft .NET provides a new package, called .NET Windows Forms, that makes
it easy to write dedicated Windows client applications using the .NET Framework. Think of
Visual Basic on steroids, available in any language, and you'll have imagined the right
model. I describe .NET Windows Forms in Chapter 5.

ADO.NET, which provides good support for database access within the .NET
Framework. No Internet programming environment would be complete without some
mention of database access. Most Internet programs, at least today, spend most of their
time gathering information from a client, making a database query, and presenting the
results to the client. .NET provides good support for database operations using ADO.NET. I
cover ADO.NET in Chapter 6.

Outstanding support for handling XML documents and streams. Operating in the
modern distributed computing environments requires applications to handle XML. The .NET
Framework contains outstanding support for writing applications that handle XML documents
and streams. I discuss XML in Chapter 7.

A standardized mechanism for signaling asynchronous events. Providing a
standardized mechanism for callbacks from a server to its client was a large stumbling block
in pre-.NET COM-based programming. The .NET Framework provides a standardized
mechanism for one party to make an asynchronous call to another. I discuss this eventing
mechanism in Chapter 8.

Support for writing multithreaded code. The Windows operating system acquired
preemptive multithreading in 1993 with the release of 32-bit Windows NT. Unfortunately,
multithreaded programs have been difficult to write due to the low level of support from the
operating system. The .NET Framework contains much more support for allowing everyday
programmers to make use of the operating system's multithreading capabilities. I discuss
threading in Chapter 9.

Support for writing your own Windows Forms and Web Forms controls. The concept of
a control, a prepackaged unit of functionality dealing with a user interface, has been
fantastically successful. Both Windows Forms (Chapter 5) and ASP.NET Web Forms
(Chapter 3) get most of their functionality from their ability to host controls. .NET also
provides excellent support for users to develop their own controls, either for internal use or
for sale to third parties. Chapter 10 and Chapter 11, respectively, discuss writing Windows
Forms controls and Web Forms controls.
Introducing Microsoft .NET, Second Edition
David S. Platt
Microsoft Press
:-k
User avatar
Xouqoa
Way too much time!
Way too much time!
Posts: 4106
Joined: July 2, 2002, 5:49 pm
Gender: Mangina
XBL Gamertag: Xouqoa
Location: Dallas, TX
Contact:

Post by Xouqoa »

Thanks Aslanna, good bit of info.
"Our problems are man-made, therefore they may be solved by man. No problem of human destiny is beyond human beings." - John F Kennedy
User avatar
Truant
Way too much time!
Way too much time!
Posts: 4440
Joined: July 4, 2002, 12:37 am
Location: Trumania
Contact:

Post by Truant »

you quoted that whole fucking document just to put a god damned emoticon?

Die
User avatar
noel
Super Poster!
Super Poster!
Posts: 10003
Joined: August 22, 2002, 1:34 am
Gender: Male
Location: Calabasas, CA

Post by noel »

Truant wrote:Die
Seconded.
Oh, my God; I care so little, I almost passed out.
User avatar
Kylere
Way too much time!
Way too much time!
Posts: 3354
Joined: July 3, 2002, 6:26 pm
Location: Flint, Michigan

Post by Kylere »

Since I quit eating and smoking I have lost approx 95% of my brain capacity, now that I am performing at Kyoukan level I need one of you to translate this for me.

Good news is that if I lose another 1% of my brain power I will learn french and be eligible to move to Quebec!!!
She Dreams in Digital
\"Led Zeppelin taught an entire generation of young men how to make love, if they just listen\"- Michael Reed(2005)
Zamtuk
Way too much time!
Way too much time!
Posts: 4781
Joined: September 21, 2002, 12:21 am
Location: Columbus, OH

Post by Zamtuk »

Truant wrote:you quoted that whole fucking document just to put a god damned emoticon?

Die


:lol:
Fuck Michigan!
User avatar
masteen
Super Poster!
Super Poster!
Posts: 8197
Joined: July 3, 2002, 12:40 pm
Gender: Mangina
Location: Florida
Contact:

Post by masteen »

ASP.NET (the next version of Active Server Pages) is a new environment that runs on Internet Information Services (IIS)
That's all I need to know what a steaming pile of shit this is.
User avatar
Sylvus
Super Poster!
Super Poster!
Posts: 7033
Joined: July 10, 2002, 11:10 am
Gender: Male
XBL Gamertag: mp72
Location: A², MI
Contact:

Post by Sylvus »

The new IIS for Server 2k3 might be better, who knows? ;)
"It's like these guys take pride in being ignorant." - Barack Obama

Go Blue!
User avatar
masteen
Super Poster!
Super Poster!
Posts: 8197
Joined: July 3, 2002, 12:40 pm
Gender: Mangina
Location: Florida
Contact:

Post by masteen »

Sylvus wrote:The new IIS for Server 2k3 might be better, who knows? ;)
ROFL! You should be a comedian!
Post Reply