Hi All,
I am using Visual Studio 2013 and I am trying to extend the default registration logic in order to add a Name and a Last Name.
I am using a web form project and the only documentation I can find is about MCV.
I am really stuck because I cannot find any documentation about that regarding web forms and the several exemples (like adding birth date) don't really clarify how to accomplish this apparently easy task with Web forms.
Please help me with some code or documentation.
So far I only managed to add this code into Models folder > IdentityModels.vb

Public Class ApplicationUser Inherits IdentityUser Public Property FirstName() As String Get Return m_FirstName End Get Set(value As String) m_FirstName = Value End Set End Property Private m_FirstName As String Public Property LastName() As String Get ...

Go to the complete details ...