I am new in MVC and ASP.NET
.
I am creating an application in which I want to add Employee Details like Personal, education etc
So, for education detail I created a Partial View
and when user clicks on Add More link
I want to add that Partial View
in existing View
. So, every time user click on that link I want to add one Partial View in the existing View
.
Can anyone please tell me how I can achieve this. Thanks
EDIT
So by default I add Partial View
like
@{
Html.RenderPartial("Education");
}
@Html.ActionLink("Add More", null, null, new { @class = "btn btn-primary" })
so on the Add More link I want to add More Partial View