在Visual Studio社区2017 rel中创建一个空白WebApplication。 15.3.5 接下来添加了WebForm 目标asp.net 4.6.1(但4.5也是同样的问题)
在v1.0.7更新了Microsoft.CodeDom.Providers.DotNetCompiler 和Microsoft.Net.Compiler在v.2.3.2
启动/domain/Test2/WebForm1.aspx时出现此错误
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication1.WebForm1" %>
为什么Microsoft.CodeDom.Providers.DotNetCompilerPlatform没有加载? 文件夹bin存在于Server =&gt;域/ Test2的/ bin中
程序集绑定日志记录已关闭??? 最终用户不修改注册表
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
</form>
</body>
</html>
WebForm1.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace WebApplication1
{
public partial class WebForm1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
}