On the right you find the list of articles published on this Web site in the category ASP.NET General conveniently split up in pages.
If you can't find what you're looking for, try another category from the sub menu
| Details |
|
|
| Site Section | Articles | |
| Site Section | ASP.NET General | |
| Number of
items |
3 | |
| Last Article Added |
8/4/2010 12:12 PM |
Below you find some of the books that I am currently reading.
Since version 2.0, ASP.NET ships with a set of the so called Application Services, including Membership, the Role Manager, Personalization, Profile and the SqlWebEventProvider. To enable these features, you have a few options. The most common way is to just start using one of the features, such as Login control on an ASPX page. The default setup is configured to automatically create a SQL Server database in the App_Data folder of a site with the services already enabled. Another very common way, to get more control over the setup is to use the aspnet_regsql tool. This GUI or command line tool gives you more control over the SQL Server and database you're targeting and the exact features you want to install. The downside of this tool is that you need to run it locally and need the permissions to execute it.
I recently discovered that you can also manage the application services programmatically.