[Mono-bugs] [Bug 72014][Nor] New - Problem with system.web/webControls config section
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Mon, 31 Jan 2005 12:27:42 -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 m@pernecky.sk.
http://bugzilla.ximian.com/show_bug.cgi?id=72014
--- shadow/72014 2005-01-31 12:27:42.000000000 -0500
+++ shadow/72014.tmp.515 2005-01-31 12:27:42.000000000 -0500
@@ -0,0 +1,33 @@
+Bug#: 72014
+Product: Mono: Class Libraries
+Version: 1.0
+OS: other
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: Sys.Web
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: m@pernecky.sk
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: Problem with system.web/webControls config section
+
+When retrieving configuration of system.web/webControls MS framework
+returns an object of type System.Collections.Hashtable and MONO 1.0.5
+returns object of type System.Web.Configuration.WebControlsConfig.
+
+There is no way to use this without creating two assemblies - one for MONO
+and one for MS framework, because WebControlsConfig is a MONO only class
+without any usable interfaces or superclasses.
+
+Steps to reproduce this problem:
+
+Trace.Write (HttpContext.Current.GetConfig ("system.web/webControls").
+GetType ().FullName));
+
+MONO: System.Web.Configuration.WebControlsConfig
+MS.NET: System.Collections.Hashtable