How to create reusable control in ASP.NET MVC

后端 未结 4 1279
有刺的猬
有刺的猬 2021-02-03 12:42

How can/should I create some \"custom control\" in ASP.NET MVC 3? I have red about partial views, ViewUsersControl, Html.RenderAction, but I still don\

4条回答
  •  醉酒成梦
    2021-02-03 13:25

    1) PartialViews

    2) Custom Html helpers

    3) Child Actions

    Update ASP.NET Core:

    2) Tag Helpers are preferred way over Custom Html helpers

    3) View Components are used instead of Child Actions

提交回复
热议问题