Multiple choice technology web technology

What are Built-in providers in ASP.NET 2.0? Choose correct options from following list.

  1. Membership

  2. Webservice

  3. Role

  4. SiteMap

Reveal answer Fill a bubble to check yourself
A,C,D Correct answer
Explanation

ASP.NET 2.0 introduced built-in providers for Membership (user management), Role (role-based security), and SiteMap (site navigation). These providers offer a consistent API for common tasks without requiring developers to build from scratch. Webservice is not a provider - it's a communication technology.

AI explanation

ASP.NET 2.0 introduced the provider model, and it ships several built-in providers out of the box: the Membership provider (user authentication/credentials), the Role provider (role management, e.g. AspNetSqlRoleProvider), and the SiteMap provider (drives the SiteMapPath/Menu/TreeView navigation controls from web.sitemap). 'Webservice' is not one of the standard ASP.NET 2.0 provider categories — there is no built-in 'WebService provider'; web services are a separate ASMX/WCF concern, not part of the Membership/Role/Profile/SiteMap/WebParts provider family. So the three marked options are correct and Webservice is rightly excluded.