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
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
@Html.RenderPartial("InsertASPCodeHelper")
2.InsertASPCodeHelper.aspx
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage" %>