ASP.Net MVC3 Azure - Do I Need Membership Provider Stored Procedures?

Since you’re following that tutorial, you’re already using the ASP.NET Universal Providers. One step in the tutorial adds the universal providers as a NuGet package. You can refer to http://nuget.codeplex.com for more information about NuGet.

A Nuget package is essentially some pre-written code, which simplifies your development. For example, the universal providers automatically create the membership database tables based on your connection string. You can of course, continue to manually create the database tables, and then use the built-in ASP.NET membership provider.

You should actually use the ASP.NET Universal Providers For SqlExpress 1.1. This is the officially supported method of enabling the SQL membership, role and session providers across both SQL Azure and standalone SQL Server. The Universal Providers should automatically create the necessary SQL objects for you, so you shouldn't have to run any scripts manually.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions