-3

我有一个文件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>
4

1 回答 1

0

我只能在以下位置看到此文件夹:C:\Users\MyName\AppData\Local\Temp\Temporary ASP.NET Files\root\e9c94091\d023916f 但如果您使用不同的操作系统或 ASP.NET 配置,您的文件可能存储在别处(...\root\xxxxxxxx\xxxxxxxx)

于 2013-08-13T07:27:14.343 回答