运行.asp项目时出现编译错误

问题描述 投票:0回答:1

Error while running the asp web page

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication3.WebForm1" %>

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Document</title>
</head>
<body>
    <form id="form1" runat="server">
        <div>
        </div>
    </form>
</body>
</html>

运行 Microsoft VS 2019 时出现编译错误。我的代码没有任何错误。我尝试了多达 8 个不同的项目。运行每个项目时都显示相同的错误,但我无法执行。我测试了一个可以在我的系统上运行的项目,但同一个项目不能在我的系统上运行。为什么?请帮忙。我认为这可能是 .NET Framework 版本问题,我安装了新版本,但仍然遇到相同的错误。请帮忙...!!

c# asp.net .net visual-studio-2019 runtime-compilation
1个回答
0
投票

在错误代码中,它表示您需要“System.Reflection.Extensions” 所以你可以从这个链接安装这个包 https://www.nuget.org/packages/System.Reflection.Extensions

或者您可以从“管理解决方案的 nuget 包”中找到它到您的视觉工作室

在视觉工作室

工具 >> Nuget 包管理器 >> 管理解决方案的 nuget 包

© www.soinside.com 2019 - 2024. All rights reserved.