How to add controls dynamically on button click in mvc3
2 Answers
If you meant controller actions, you could do it like:
@this.Html.Action("ActionName", "ControllerNAme")
But if you meant ASP.NET Webforms server controls, forget that. In MVC the alternative is to use HTML helpers.