| Author: ChandraShekarThota 02 Jul 2007 | Member Level: Diamond | Rating: Points: 2 |
we have master pages we have new controls
|
| Author: ChandraShekarThota 02 Jul 2007 | Member Level: Diamond | Rating: Points: 2 |
Design goals for ASP.NET 2.0:
Increase productivity by removing 70% of the code Use the same controls for all types of devices Provide a faster and better web server platform Simplify compilation and installation Simplify the administration of web applications
|
| Author: ChandraShekarThota 02 Jul 2007 | Member Level: Diamond | Rating: Points: 2 |
Some of the new features in ASP.NET 2.0 are:
Master Pages, Themes, and Web Parts Standard controls for navigation Standard controls for security Roles, personalization, and internationalization services Improved and simplified data access controls Full support for XML standards like, XHTML, XML, and WSDL Improved compilation and deployment (installation) Improved site management New and improved development tools
|
| Author: ChandraShekarThota 02 Jul 2007 | Member Level: Diamond | Rating: Points: 2 |
ASP.NET didn't have a method for applying a consistent look and feel for a whole web site.
Master pages in ASP.NET 2.0 solves this problem.
A master page is a template for other pages, with shared layout and functionality. The master page defines placeholders for content pages. The result page is a combination (merge) of the master page and the content page.
|
| Author: ChandraShekarThota 02 Jul 2007 | Member Level: Diamond | Rating: Points: 2 |
Themes Themes is another feature of ASP.NET 2.0. Themes, or skins, allow developers to create a customized look for web applications.
Design goals for ASP.NET 2.0 themes:
Make it simple to customize the appearance of a site Allow themes to be applied to controls, pages, and entire sites Allow all visual elements to be customized
|
| Author: ChandraShekarThota 02 Jul 2007 | Member Level: Diamond | Rating: Points: 2 |
ASP.NET 2.0 Web Parts can provide a consistent look for a site, while still allowing user customization of style and content.
New controls:
Zone controls - areas on a page where the content is consistent Web part controls - content areas for each zone
|
| Author: ChandraShekarThota 02 Jul 2007 | Member Level: Diamond | Rating: Points: 2 |
ASP.NET 2.0 has built-in navigation controls like
Site Maps Dynamic HTML menus Tree Views
|
| Author: ChandraShekarThota 02 Jul 2007 | Member Level: Diamond | Rating: Points: 2 |
Security is very important for protecting confidential and personal information.
In ASP.NET 2.0 the following controls has been added:
A Login control, which provides login functionality A LoginStatus control, to control the login status A LoginName control to display the current user name A LoginView control, to provide different views depending on login status A CreateUser wizard, to allow creation of user accounts A PasswordRecovery control, to provide the "I forgot my password" functionality
|
| Author: ChandraShekarThota 02 Jul 2007 | Member Level: Diamond | Rating: Points: 2 |
ASP.NET 2.0 has personalization features for storing user details. This provides an easy way to customize user (and user group) properties.
|
| Author: ChandraShekarThota 02 Jul 2007 | Member Level: Diamond | Rating: Points: 2 |
Reaching people with different languages is important if you want to reach a larger audience.
ASP.NET 2.0 has improved support for multiple languages.
|
| Author: ChandraShekarThota 02 Jul 2007 | Member Level: Diamond | Rating: Points: 2 |
Many web sites are data driven, using databases or XML files as data sources.
With ASP.NET this involved code, and often the same code had to be used over and over in different web pages.
A key goal of ASP.NET 2.0 was to ease the use of data sources.
ASP.NET 2.0 has new data controls, removing much of the need for programming and in-depth knowledge of data connections.
|
| Author: ChandraShekarThota 02 Jul 2007 | Member Level: Diamond | Rating: Points: 2 |
ASP.NET 2.0 provides automatic compilation. All files within a directory will be compiled on the first run, including support for WSDL, and XSD files.
|
| Author: giribaabu 02 Jul 2007 | Member Level: Bronze | Rating: Points: 2 |
In asp.net 2.0 we have skin and theme concept like css concept in 1.1
|
| Author: Gomathi NS 02 Jul 2007 | Member Level: Silver | Rating: Points: 2 |
The important feature of 2005 over 2003 is Partial Class.
Partial class provides a way to split the definition of a class or a struct, or an interface over two or more source files.
When working on large projects, spreading a class over separate files allows multiple programmers to work on it simultaneously.
|