How do you include .html or .asp file using razor?

后端 未结 14 1490
说谎
说谎 2020-12-14 01:09

Is it possible to use server side include in Razor view engine to include .html or .asp file? We have an .html file and .asp files that contain website menus that are used

14条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-14 01:22

    Try making your html page to a cshtml page and including it with:

    @RenderPage("_header.cshtml")
    

提交回复
热议问题