Hi All,
I'm new to ASP and am wondering if there is a tutorial or sample project for ASP.NET Identity 2. I have installed VS2013 Update 2 and created a new WebAp[plication, WebForms project using the template. The only close tutorial was pranav's below, but it
seems slightly dated and and is using MVC. I was trying to follow but while his example is great, it does not follow through with the WebForms template. Namely, when you create a new WebApplication WebForms project and set Authentication to Individual.
In the template, there is an IdentityModels.cs
public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
{
public ApplicationDbContext() : base("DefaultConnection", throwIfV1Schema: false)
{
}
static ApplicationDbContext()
{
// Set the database intializer which is run once during application star ...
Go to the complete details ...