Search - Articles
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Tuesday, March 03, 2009
Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 

FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home >Search > Articles & Samples > .Net Framework 2.0
Search:
What's New - What's Hot
Listings for .Net FAQ .Net FAQ (15)
Listings for Class Libraries Class Libraries (19)
Listings for Code Generation Code Generation (7)
Listings for Component Component (6)
Listings for File Management File Management (11)
Listings for Globalization Globalization (6)
Listings for N-Tier N-Tier (1)
Listings for NameSpaces NameSpaces (24)
Listings for OOP OOP (204)
Listings for Security Security (51)
Listings for Serialization Serialization (6)
Listings for Threading Threading (12)


CLR and Language Enhancements in .NET Framework 2.0 – Part 1     
Total Hits: 17  |  Today: 0Author: Saravana Kumar      Rating:  
Read Reviews | Write Review |  Your Rating: 

The next release of .NET Framework 2.0 and Visual Studio .NET platform code-named Whidbey brings a series of new enhancements and altogether new advancements to all areas of .NET framework and visual studio. With its enhancements, it also paves the path to next generation Microsoft operating system "Longhorn". All this enhancements are designed to help developers both be productivity and take full advantage of the power of the .NET framework....

CLR and Language Enhancements in .NET Framework 2.0 – Part 2     
Total Hits: 14  |  Today: 0Author: microsoft      Rating:  
Read Reviews | Write Review |  Your Rating: 

The next release of .NET Framework 2.0 and Visual Studio .NET platform code-named Whidbey brings a series of new enhancements and altogether new advancements to all areas of .NET framework and visual studio. With its enhancements, it also paves the path to next generation Microsoft operating system "Longhorn". All this enhancements are designed to help developers both be productivity and take full advantage of the power of the .NET framework....

Common Type System (CTS): One Platform to Rule Them All     
Total Hits: 56  |  Today: 0Author: Joe Duffy      Rating:  
Read Reviews | Write Review |  Your Rating: 

The Common Language Runtime (CLR) — or more precisely any implementation of the Common Language Infrastructure (CLI) specification — executes code inside the bounds of a well-defined type system, called the Common Type System (CTS). The CTS is part of the CLI, and is maintained via the ECMA and International Organization for Standardization (ISO) international standards bodies. It defines a set of structures and services that programs targeting the CLR may use, including a rich type system for b...

Transactions in the .NET 2.0 Framework     
Total Hits: 61  |  Today: 0Author: Joe Duffy      Rating:  
Read Reviews | Write Review |  Your Rating: 

Most meaningful software operations are composed of multiple independent steps. Although a single method call, for instance, is often viewed as a logically distinct unit, this is in the eye of the caller. A single method might just execute a single SQL UPDATE statement over 1000 database rows that must be applied by the database atomically. On the other hand, another method might execute a SQL UPDATE statement, manipulate state on a shared COM+ component, and initiate web service message that re...

CLR Method Internals     
Total Hits: 67  |  Today: 0Author: Joe Duffy      Rating:  
Read Reviews | Write Review |  Your Rating: 

Simple tasks that you typically take for granted can be surprisingly complex when you peek under the hood. Method calls are the bread and butter of C# and VB programming, but a lot of moving pieces go into making that all work. In this article, we'll take a quick look at how all of it works.
When a method call on the CLR is made, the caller and callee must communicate a set of information with each other. The abstraction that contains this information is called an activation frame. The caller...

What's New in the .NET Framework 2.0     
Total Hits: 60  |  Today: 0Author: Christian Nagel, Bill Evjen, Jay Glynn, Karli Wats      Rating:  
Read Reviews | Write Review |  Your Rating: 

The first version of the .NET Framework (1.0) was released in 2002 to much enthusiasm. The latest version, the .NET Framework 2.0, was introduced in 2005 and is considered a major release of the framework.
With each release of the framework, Microsoft has always tried to ensure that there were minimal breaking changes to code developed. Thus far, they have been very successful at this goal....

.NET 3.5 Language Enhancements     
Total Hits: 102  |  Today: 0Author: John Papa      Rating:  
Read Reviews | Write Review |  Your Rating: 

While Visual Studio 2008, the several variations of LINQ, and the ADO.NET Entity Framework are getting a lot of attention in the upcoming .NET Framework 3.5, there are also several key language enhancements on the near horizon. Many of the language enhancements (which will be found in VB 9 and C# 3.0) are the foundation of these more prominent new technologies. This article is a primer for some of the key enhancements that will be introduced with the .NET Framework 3.5 and how they relate to eac...

A Closer Look at the Echo2 Framework     
Total Hits: 100  |  Today: 0Author: David R. Heffelfinger      Rating:  
Read Reviews | Write Review |  Your Rating: 

Some of the readers of my previous review of the Echo2 framework expressed concern that I didn't write a complex enough application to give it a fair shot. Fair enough, I just finished writing a new web application using the Echo2 framework, complete with input validation and database access using Hibernate for object-relational mapping. This article summarizes my experiences with the Echo2 framework....

A Review of the Echo2 Framework     
Total Hits: 89  |  Today: 0Author: David R. Heffelfinger      Rating:  
Read Reviews | Write Review |  Your Rating: 

According to their website, "Echo2 is the next-generation of the Echo Web Framework, a platform for developing web-based applications that approach the capabilities of rich clients. The 2.0 version holds true to the core concepts of Echo while providing dramatic performance, capability, and user-experience enhancements made possible by its new Ajax-based rendering engine."...

Everything You Need To Know To Start Programming 64-Bit Windows Systems     
Total Hits: 175  |  Today: 0Author: Matt Pietrek      Rating:  
Read Reviews | Write Review |  Your Rating: 

One of the pleasures of working on the bleeding edge of Windows® is poking around in a new technology to see how it works. I don't really feel comfortable with an operating system until I have a little under-the-hood knowledge. So when the 64-bit editions of Windows XP and Windows Server™ 2003 appeared on the scene, I was all over them. The nice thing about Win64 and the x64 CPU architecture is that they're different enough from their predecessors to be interesting, while not requiring a huge le...

Create Reusable Project And Item Templates For Your Development Team     
Total Hits: 52  |  Today: 0Author: Matt Milner      Rating:  
Read Reviews | Write Review |  Your Rating: 

Over my years of working with clients on building Microsoft® .NET Framework-based applications, I have often heard a common feature request for Visual Studio® .NET: "It would be great if we could create our own project types and item types so that all developers in our organization would have access to them." Many orgs want to create shared templates for projects such as Web sites or for project items, such as a default Web page or forms. Visual Studio 2005 introduces a new model for defining te...

Techniques for Contract-First Development     
Total Hits: 13  |  Today: 0Author: Aaron Skonnard      Rating:  
Read Reviews | Write Review |  Your Rating: 

In my May 2005 column, I discussed contract-first development and appropriate times to use it (see Service Station: Contract-First Service Development). In this second part, I'm going to focus on some techniques for contract-first development within the ASMX framework. I'll look at various tools that come with the Microsoft® .NET Framework and Visual Studio® .NET, as well as some useful third-party tools. I'll also discuss an interesting hybrid technique that offers a nice compromise between int...

Together 2.0 for Visual Studio .NET Streamlines Development for the Modern Enterprise     
Total Hits: 178  |  Today: 0Author: Dev Source      Rating:  
Read Reviews | Write Review |  Your Rating: 

Object oriented programming (and .NET programming in particular) is not a “make it up as you go along” affair. The discipline requires planning and structure. As a result, an indispensable addition to an OO developer's programming toolbox is comprehensive object oriented analysis and design tools that use Unified Modeling Language (UML), the lingua franca of software diagramming languages. Programmers who use these software engineering methodologies consider it important to have modeling product...

Learn The ABCs Of Programming Windows Communication Foundation     
Total Hits: 143  |  Today: 0Author: Aaron Skonnard      Rating:  
Read Reviews | Write Review |  Your Rating: 

Windows® Communication Foundation (WCF), formerly code-named "Indigo," is about to radically change the face of distributed programming for developers using the Microsoft® .NET Framework. WCF unifies the existing suite of .NET distributed technologies into a single programming model that improves the overall developer experience through a consistent architecture, new levels of functionality and interoperability, and all the extensibility points you could want. This article introduces you to WCF ...

Revisiting Operator Overloading     
Total Hits: 88  |  Today: 0Author: Ken Getz      Rating:  
Read Reviews | Write Review |  Your Rating: 

On the conference circuit recently, I was speaking about some of my favorite new features in the Microsoft® .NET Framework 2.0, using the content of three recent columns in this series as fodder. In my talk I sped through generics, operator overloading, and the BackgroundWorker component, all in the space of an hour (for the columns, see Advanced Basics: Being Generic Ain't So Bad, Advanced Basics: Calling All Operators, and Advanced Basics: Doing Async the Easy Way). This accomplishment require...

Security Question List: Managed Code (.NET Framework 2.0)     
Total Hits: 24  |  Today: 0Author: J.D. , Alex, Blaine, Prashant, Jason, Rudolph      Rating:  
Read Reviews | Write Review |  Your Rating: 

Use the questions in this module to help you perform security code reviews on managed code (.NET Framework 2.0) applications. Use this question list in conjunction with the module, "How To: Perform a Security Code Review for Managed Code (.NET Framework 2.0)." Use this module to conduct an effective code review for security. Each question category includes a table that matches vulnerabilities to implications, and a set of questions that you can use to determine if your application is susceptible...

.NET 2.0 transaction model     
Total Hits: 40  |  Today: 0Author: Amirthalingam Prasanna      Rating:  
Read Reviews | Write Review |  Your Rating: 

The Microsoft .NET 2.0 platform introduces a new namespace called System.Transactions that brings in a lightweight, simplified transaction model. This article discusses the shortcomings of current transaction models and introduces System.Transactions for .NET Framework 2.0 beta 2. Currently there are two transaction models available in the .NET world, both of which are suited for certain situations. The first is part of the rich ADO.NET data providers. The second is the enterprise services trans...

Framework Support and New Features     
Total Hits: 88  |  Today: 0Author: Microsoft      Rating:  
Read Reviews | Write Review |  Your Rating: 

The .NET Compact Framework version 2.0 introduces new features and provides more support for .NET Framework classes. It also provides better performance in several feature areas, including just-in-time (JIT) compilation, garbage collection, XML Web services, and data access....

Generics In-Depth     
Total Hits: 30  |  Today: 0Author: J. Ambrose Little      Rating:  
Read Reviews | Write Review |  Your Rating: 

One of the most talked-about features of the next version of the .NET Framework is generics capability. The funny thing is that although generics are extremely useful, they also seem to have a certain mystique about them that cannot be readily explained. Perhaps the fact that VB never supported anything like them, C++ did (templates), and that the C# team seems to have led the way in pushing the addition of this feature has led to the perception that they are an advanced feature that only the el...

What's New in the .NET Framework 2.0 Beta?     
Total Hits: 41  |  Today: 0Author: Exforsys      Rating:  
Read Reviews | Write Review |  Your Rating: 

In this tutorial you will learn about new feature in .NET Framework 2.0 Beta. Various aspects such as Support for 64 bit platform application development, Access control list support (ACL), ADO.NET, ASP.NET, Authenticated streams,COM Interop Service Enhancements, Console Class Additions, Data Protection API, Detecting changes in Network connectivity, Disjunctive Demands, Distributed Computing, EventLog Enhancements, Expanded Certificate Management, FTP Support, Generics and Generic Collection, I...



Disclaimer - Privacy
© 2002-2012 DevASP.net