[Mono-bugs] [Bug 54117][Min] New - System.Web ignores compilation tempDirectory settings in web.config

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Mon, 9 Feb 2004 16:08:26 -0500 (EST)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by liyul@hotmail.com.

http://bugzilla.ximian.com/show_bug.cgi?id=54117

--- shadow/54117	2004-02-09 16:08:26.000000000 -0500
+++ shadow/54117.tmp.3417	2004-02-09 16:08:26.000000000 -0500
@@ -0,0 +1,48 @@
+Bug#: 54117
+Product: Mono/Class Libraries
+Version: unspecified
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Minor
+Component: Sys.Web
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: liyul@hotmail.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: System.Web ignores compilation tempDirectory settings in web.config
+
+ASP.net hosting does not not honor such directions in web.config and 
+insists using %TMP%. Microsoft implementation creates hierachies of random 
+generated directory under the specified temp directory and put each page 
+nicely in together (Cassini/Web Matrix).
+
+<?xml version="1.0" encoding="utf-8" ?>
+<configuration>
+  <system.web>
+
+    <!--  DYNAMIC DEBUG COMPILATION
+          Set compilation debug="true" to enable ASPX debugging.  
+Otherwise, setting this value to
+          false will improve runtime performance of this application. 
+          Set compilation debug="true" to insert debugging symbols (.pdb 
+information)
+          into the compiled page. Because this creates a larger file that 
+executes
+          more slowly, you should set this value to true only when 
+debugging and to
+          false at all other times. For more information, refer to the 
+documentation about
+          debugging ASP .NET files.
+    -->
+    <compilation 
+         defaultLanguage="c#"
+	 tempDirectory="C:\temp"
+         debug="true"
+    />
+  </system.web>
+</configuration>