Posts Tagged: asp.net
-
Dec 12, 2010
32 CommentsASP.NET MVC 2 Custom Membership Provider Tutorial – Part 3
Continued from: ASP.NET MVC 2 Custom Membership Provider Tutorial – Part 2 In the previous part of the tutorial we implemented CreateUser method which successfully creates new user in the database. First thing we want to do now is to generate password salt. Open UserRepository.cs, and add a reference to System.Security.Cryptography: using System.Security.Cryptography; and function...
-
Nov 22, 2010
30 CommentsASP.NET MVC 2 Custom Membership Provider Tutorial – Part 2
Continued from: ASP.NET MVC 2 Custom Membership Provider Tutorial – Part 1 Just to quickly wrap up what we’ve done so far: We created new project using ASP.NET MVC 2 Web Application to make use of the layout (login pages, master page, login controls) and speed up our development. We created Custom Membership Provider and...
-
Nov 15, 2010
17 CommentsASP.NET MVC 2 Custom Membership Provider Tutorial – Part 1
In this tutorial I will show how to implement Custom Membership Provider in ASP.NET MVC 2 Web Application using Microsoft Visual Web Developer 2010 Express. The tutorial will consist of few parts (not sure how many at this stage) and I will try to cover custom implementations of membership, role and profile providers. I will...
