How to create a simple custom log in system - MVC 4 / Razor - Part 4 of 5

preview_player
Показать описание
I go over how to create the database, entity framework model, controllers, views and object model in order to implement a simple authentication system. I also talk about how to encrypt and decrypt and passwords using the SimpleCrypto library. All done in MVC 4 Razor, C# using Visual Studio 2012

I can only keep making these videos with your support. Please LIKE and SUBSCRIBE to my channel. If you have questions, join our Google+ Community

Thank you for watching!! :D
Fabio Scopel

Sources:
SimpleCrypto web site:

Also used as reference this site:
Рекомендации по теме
Комментарии
Автор

thanks for Uploading these Videos on YouTube, You made Entity Framework really easy for me :) and also MVC4

AgrawalFinance
Автор

This is okay for 'Learn with me as I am learning how to code MVC'. Another way to motivate oneself to learn MVC. Just don't forget to keep checking the right monitor to make sure what you are typing in front of you is correct. Good video for newbies though.

LifeInCycle
Автор

hello I have problem when i will register my new account It won't be saved in database what's solution please ???

NadhirGS
Автор

good job fabio.. dont listen to the trolls

arpanworld
Автор

Hi i do the login the same do in the video but i have a problem with Request.IsAuthenticated because it s everytime false and when i login dont show the text logout and name, Thanks

corsaronero
Автор

I got trouble with the FormAuthentification "FormAuthentification doesnt existe in this actuel context" and my element authentication mode="Forms" web.config exist ??? someone could help !  Very nice tuto !

brunobeaudoin
Автор

i have insert 
<authentication mode="Forms">
  <forms loginUrl="~/Account/Login" timeout="2880" />
</authentication>

In the webconfig. in views and in the root web.config to 

and in the filterConfig.cs i have add 

        public static void filters)
        {
            filters.Add(new AuthorizeAttribute());
        }

brunobeaudoin
visit shbcf.ru