Exforsys

ASP.NET 2.0

  1. Getting started with ASP.NET 2.0
  2. .NET Framework Fundamentals
  3. Microsoft.NET Framework Tools
  4. Application Development in .NET
  5. What's New in the .NET Framework 2.0 ?
  6. Introduction to Visual Studio.NET
  7. Installing Visual Studio.NET 2005
  8. Working with Visual Studio.NET Web Applications
  9. Whats New in ASP.NET 2.0
  10. Creating an ASP.NET Application
  11. ASP.NET Code Directory
  12. ASP.NET Page Object Model
  13. ASP.NET Server Controls
  14. ASP.NET Working With Master Pages
  15. ASP.NET Creating Content for Master Page
  16. ASP.NET Referencing Master Page Members
  17. ASP.NET Changing Master Pages Dynamically
  18. ASP.NET Creating Nested Master Pages
  19. ASP.NET Working with Web Parts
  20. ASP.NET Using Web Parts and Controls in Web Pages
  21. ASP.NET Web Pages and Layout
  22. ASP.NET - Adding Web Parts at Run Time
  23. ASP.NET Personalization: User Profiles and Themes
  24. ASP.NET Data Access features
  25. ASP.NET State Management
  26. ASP.NET Customizing the Session State Mechanism
  27. ASP.NET State Management And Caching
  28. ASP.NET Security
  29. Forms Authentication in ASP.NET
  30. ASP.NET Managing Membership and Roles
  31. ASP.NET Configuring Page-Level Caching
  32. ASP.NET Setting Application-Level Caching
  33. ASP.NET Data Source Object Model
  34. ASP.NET SqlDataSource Control
  35. ASP.NET Data Bound Controls
  36. ASP.NET GridView Control
  37. ASP.NET GridView Filtering
  38. ASP.NET Adding Sorting and Paging in GridView
  39. ASP.NET DataBound Controls - Details View
  40. ASP.NET Using a Grid to Display Detail Information
  41. ASP.NET Displaying Master-Detail Data on the Same Page
  42. Displaying Master-Detail Data on Separate Pages in ASP.NET
  43. ASP.NET Creating Web Wizards
  44. ASP.NET : Dynamic Image control
  45. ASP.NET Advanced Site Functionality

Ads


Home arrow Technical Training arrow ASP.NET 2.0

Visual Studio.NET Versions

Page 2 of 2
Author : Exforsys Inc.     Published on: 26th Jul 2005    |   Last Updated on: 21st Nov 2007

Introduction to Visual Studio.NET

Visual Studio.NET Versions

Three versions of Visual Studio.NET have been released. Each version combines the best features of the previous one and extends the set of functions that make for ease of web application development.

The first version--VS.NET was targeted to desktop development. Developers used ASP.NET in conjunction with Web Matrix—which provided them with the WYSIWYG designers, with syntax colouring and different views of code but with support for pages with inline code.

Ads

VS.NET 2003 promoted the concept of ‘projects’ as central to application design. Basically a project was a XML file that linked together all other files and directories. All application development begins with the initiation of a new project. The project is then configured, new pages were added, web services, classes and controls are defined. Since the project is a one point of control and management of the application, a file has to be explicitly added to the project for it to be accessible within the project. It also implies that no page can be opened outside the project and even if opened and edited outside the project scope, ‘IntelliSense’ will not work. Moreover, when a page is no longer in use it has to be explicitly removed from the project to prevent garbage collection especially in an environment where hundreds of machines have to be synchronized.

Finally, actual testing and deployment of the application developed in VS.NET 2003 requires the installation of a Microsoft Internet Information Service (IIS) virtual directory --both on the development machine and on the server. It also requires a few other components such as Microsoft Frontpage server Extensions (FPSE) and does not support FTP, local file system or direct IIS access. The impact on application development though not explicit, is a constant irritant to the developer. The process of debugging the application is also complex and developers have to have administrative privileges to create new projects and corporate security policy has to be defined in detail.

Visual Studio 2005 integrates the best features of Web matrix and VS.NET and creates a container environment that provides for a simpler and friendlier way of developing Web Forms applications. It attempts to address all the shortcomings of Visual Studio.NET 2003. There is a designer for building Windows forms applications, a designer for building ASP.NET sites and one for building Web Services. It discards the project based approach and supports multiple ways to open websites. It supports Front page Server Extensions (FPSE) and also gives access to files through FTP or direct file system path. Local installations of IIS can be accessed and existing hierarchies of virtual directories can be browsed. Users can access virtual roots or create new ones. IIS is not strictly required for development work as VS.NET 2005 ships a local web server that makes IIS optional.

This local Web server is a revised version of Cassini(a mini web server which was earlier shipped with Web Matrix). The local web server can be used if a project is explicitly called from the existing IIS virtual directory. The different methods of opening a web page are available to the developer as soon as he attempts to do so. He can locate the project by using he file system path or using FTP or typing the URL. The IIS tab also provides him with controls to create new virtual roots and applications.

Visual Studio 2005 uses the dynamic engine of ASP.NET to compile code-behind classes. This ensures that any changes made to the .aspx files or .cs or .vb files are immediately captured. It can capture inline source code within the ASPX file and it offers a revised code-behind model called code-beside.

An impressive feature of this new version is the Copy Web site feature. It enables the user copy a web site to a local or remote location. This can be done by simply selecting a menu item.

Ads

Double clicking on an .aspx file in Windows Explorer invokes Visual Studio 2005 and allows the user edit the code. IntelliSense also goes into operation and works everywhere—including --within data binding expressions and page directives. The page can be seen in an embedded browser through the local web server.

The new editor inbuilt into VS.NET 2005 ensures that manually entered HTML code is not changed and custom formatting is not lost.

The Exchangeable validation engine helps check the validation code against standards of XHTML, while failures are automatically entered into the tasks list. Finally it is expected that in the final release the output of all server controls will be in XHTML.



 
This tutorial is part of a ASP.NET 2.0 tutorial series. Read it from the beginning and learn yourself.

ASP.NET 2.0

  1. Getting started with ASP.NET 2.0
  2. .NET Framework Fundamentals
  3. Microsoft.NET Framework Tools
  4. Application Development in .NET
  5. What's New in the .NET Framework 2.0 ?
  6. Introduction to Visual Studio.NET
  7. Installing Visual Studio.NET 2005
  8. Working with Visual Studio.NET Web Applications
  9. Whats New in ASP.NET 2.0
  10. Creating an ASP.NET Application
  11. ASP.NET Code Directory
  12. ASP.NET Page Object Model
  13. ASP.NET Server Controls
  14. ASP.NET Working With Master Pages
  15. ASP.NET Creating Content for Master Page
  16. ASP.NET Referencing Master Page Members
  17. ASP.NET Changing Master Pages Dynamically
  18. ASP.NET Creating Nested Master Pages
  19. ASP.NET Working with Web Parts
  20. ASP.NET Using Web Parts and Controls in Web Pages
  21. ASP.NET Web Pages and Layout
  22. ASP.NET - Adding Web Parts at Run Time
  23. ASP.NET Personalization: User Profiles and Themes
  24. ASP.NET Data Access features
  25. ASP.NET State Management
  26. ASP.NET Customizing the Session State Mechanism
  27. ASP.NET State Management And Caching
  28. ASP.NET Security
  29. Forms Authentication in ASP.NET
  30. ASP.NET Managing Membership and Roles
  31. ASP.NET Configuring Page-Level Caching
  32. ASP.NET Setting Application-Level Caching
  33. ASP.NET Data Source Object Model
  34. ASP.NET SqlDataSource Control
  35. ASP.NET Data Bound Controls
  36. ASP.NET GridView Control
  37. ASP.NET GridView Filtering
  38. ASP.NET Adding Sorting and Paging in GridView
  39. ASP.NET DataBound Controls - Details View
  40. ASP.NET Using a Grid to Display Detail Information
  41. ASP.NET Displaying Master-Detail Data on the Same Page
  42. Displaying Master-Detail Data on Separate Pages in ASP.NET
  43. ASP.NET Creating Web Wizards
  44. ASP.NET : Dynamic Image control
  45. ASP.NET Advanced Site Functionality
 

Comments