ASP.NET 代码隐藏的新页面中找不到页面错误

ASP.NET Page Not Found Error in New Page with Code Behind

我固有一个大型 ASP.NET 网络表单应用程序,并尝试添加一个带有代码隐藏的新 test.aspx 页面到新创建的文件夹 - 测试。

Test.aspx:

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Test.aspx.cs" Inherits="Test" %>

test.aspx.cs:

using System;

public partial class Test: System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        Response.Write("This is a test");
    }
}

在我的 web.config 文件中,我让任何人都可以访问 Test 文件夹。

  <location path="Test">
    <system.web>
      <authorization>
        <allow users="*" />
      </authorization>
    </system.web>
  </location>

当我在我的开发机器上使用 https://localhost/Test/Test.aspx. It works fine. But after I deployed to my server. I got error 404 - page can not be found when I do https://myserver/Test/Test.aspx 访问它时。

服务器是Windows 2008 R2。除了这个新页面外,所有其他现有页面都可以正常使用。

将另一个没有代码的新页面 Test1.aspx 放在同一个测试文件夹中。

<script language="c#" runat="server">
public void Page_Load(object sender, EventArgs e)
{
  Response.Write("hello, world!");
}
</script>

https://myserver/Test/Test1.aspx。它returns我"hello, World!"。

将任何图像文件放在同一文件夹中也可以访问。 https://myserver/Test/test.gif.

带有代码隐藏的简单新 .aspx 页面可能有什么问题?我在 Windows 事件日志或 IIS 日志中没有看到任何内容。如何调试这个问题?

请帮忙

从评论中移出。

CodeBehind替换CodeFile解决问题。

基本上,如果我们需要在部署前Visual Studio编译,我们使用CodeBehind

CodeFile and Code-Behind