Asp.Net Mvc - How to have a “controller” in shared view

后端 未结 5 2050
暖寄归人
暖寄归人 2020-12-24 11:45

I have a shared view in my _Layout.cshtml for my header named \"_Header.cshtml\".

I would like to display text and image from the database, so I need my controller t

5条回答
  •  粉色の甜心
    2020-12-24 11:53

    Create an action in one of your controllers to render the header view, then simply call @Html.RenderAction("Header") within the _Layout.cshtml.

    You can also pass a model into the RenderAction method if required.

提交回复
热议问题