In the code below, what is the difference between RenderPartial and RenderAction?
@{
Html.RenderAction("Add");
Html.RenderPartial("Add");
}
In the code below, what is the difference between RenderPartial and RenderAction?
@{
Html.RenderAction("Add");
Html.RenderPartial("Add");
}