I am working on online resume building project using ASP.NET MVC and let me tell you that I am not that much familiar with MVC.I have two view models, one for the information about experience and another for other resume details.Basically one person can have more than one experiece that is, resumeVM have one to many relationship with experienceVM and my view models look like this;
public class ResumeVM
{
//some variables
public List<ExperienceVM> experience { get; set;}
}
public class ExperienceVM
{
//some experience details
}
Now the problem is how do i create view in order to let user enter as many experience as he likes.I guess I can create UI using javascript but I don't know how can I store those values into list and save those data in the respective table.Can somebody throw light quickly on this about how to proceed??