我用visual studio 2005 打了课本上的一个例题  出现乱码。
  核心语句为:
     <h2>Respone.Write()</h2>
    <%
        String fileName1 = Request.PhysicalApplicationPath + "A.txt";
        Response.Write(fileName1);
     %>
     <h2>Response.WriteFile()</h2>
        <p>
            &nbsp;</p>
     <%
         String fileName2 = Request.PhysicalApplicationPath + "A.txt";
         Response.WriteFile(fileName2);
     %>
这些语句是在<body> </body>之间