Please help me in making a admin panel in MVC4.
can anyone supply me with the stepwise coding if i want to create it from scratch..
Thanks in Advance..
This is my basic model what next???
public class userlogon
{
[Required]
[Display(Name = "Admin Login")]
public string UserName { get; set; }
[Required]
[DataType(DataType.Password)]
[Display(Name = "Password")]
public string Password { get; set; }
}
Maybe you can try to study from this web site.
http://www.asp.net/mvc/tutorials/getting-started-with-aspnet-mvc3/cs/intro-to-aspnet-mvc-3
For me it was very helpful. It shows you step by step what to do. It’s the best way to learn MVC.