我有一个文件FirstPage.aspx,然后进行调试,但在 Temporary ASP.NET Files 文件夹中看不到自动生成的任何内容:
为什么我在文件夹中看不到任何文件或子文件夹:编译后的临时 ASP.NET 文件
请告诉我为什么?
<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
“http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"ewsdf>
<script runat="server">
    void Page_Load()
    {
        lblServerTime.Text = DateTime.Now.ToString();
    }
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>First Page</title>
</head>
<body>
    <form id="form1" runat="server">
        <div>
            Welcome to ASP.NET 4.0! The current date and time is:
            <asp:Label
                ID="lblServerTime"
                runat="server" />
        </div>
    </form>