1.
What are the new Data Controls in Asp.net 2.0?
Data access in ASP.NET 2.0 can be accomplished completely declaratively (no code) usingthe new data-bound and data source controls. There are new data source controls torepresent different data backends such as SQL database, business objects, and XML, andthere are new data-bound controls for rendering common UI for data, such as gridview,detailsview, and formview.
2.
What are the new Navigation Controls in Asp.net 2.0?
The navigation controls provide common UI for navigating between pages in your site, suchas treeview, menu, and sitemappath. These controls use the site navigation service inASP.NET 2.0 to retrieve the custom structure you have defined for your site.
3.
What are the new Login Controlsin Asp.net 2.0?
The new login controls provide the building blocks to add authentication and authorization-based UI to your site, such as login forms, create user forms, password retrieval, andcustom UI for logged in users or roles. These controls use the built-in membership and roleservices in ASP.NET 2.0 to interact with the user and role information defined for your site.
4.
What are the new Web Part Controls in Asp.net 2.0 ?
Web parts are an exciting new family of controls that enable you to add rich, personalizedcontent and layout to your site, as well as the ability to edit that content and layout directlyfrom your application pages. These controls rely on the personalization services in ASP.NET2.0 to provide a unique experience for each user in your application.
5.
What are Master Pages?
This feature provides the ability to define common structure and interface elements for yoursite, such as a page header, footer, or navigation bar, in a common location called a "masterpage", to be shared by many pages in your site. In one simple place you can control thelook, feel, and much of functionality for an entire Web site. This improves themaintainability of your site and avoids unnecessary duplication of code for shared sitestructure or behavior.
6.
What are Themes and Skins in 2.0, explain usgae scenario?
Leave a Comment