我目前有一个由经典的 asp.net 网络表单编写的项目。现在我不想将所有项目都转换为 mvc 4.0。这就是为什么我试图让我的项目成为混合项目。我添加了所有 mvc、路由库。
但我无法将 system.web.optimization 添加到我的项目中。并在自动生成的代码中出现错误。
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.17929
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace ASP {
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Web;
using System.Web.Helpers;
using System.Web.Security;
using System.Web.UI;
using System.Web.WebPages;
using System.Web.Mvc;
using System.Web.Mvc.Ajax;
using System.Web.Mvc.Html;
using System.Web.Optimization; // the line i m getting error
using System.Web.Routing;
public class _Page_Views_Home_Contact_cshtml : System.Web.Mvc.WebViewPage<dynamic> {
public _Page_Views_Home_Contact_cshtml() {
……