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

后端 未结 14 1491
说谎
说谎 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:21

    In my _Layout.cshtml I added following line:

    @Html.Partial("InsertHelper")
    

    Then I created InsertHelper.aspx in my Shared folder with this content:

    <%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage" %>
    
    
    

提交回复
热议问题