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

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

    you can include server side code and aspx file in .cshtml files as below and then inlude classic asp files or html files. Here are the steps

    1. Index.cshtml
    @Html.RenderPartial("InsertASPCodeHelper")

    2.InsertASPCodeHelper.aspx

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

提交回复
热议问题