Hi
ASP.NET 2.0 comes with some great API’s like Membership,
Roles API, Profile API, health monitoring API. Etc. These API use the default
providers to store data. Like the Membership API uses the SQL Express database
by default to store the data. But many a time you want to use other database. I
wanted to store the Membership and profile data in the SQL Server 2000 database./p>
With ASP.NET 2.0 Provider model this can be done in a few
steps./p>
First we create a new database and obtain its connection
string./p>
Next configure the database with ASP.NET schemas. To do these
use the aspnet_regsql./span>/b>exe/span>
which is located at /span>Continued...