[Mono-bugs] [Bug 61790][Wis] New - Mono mcs compiler does not support System.Web.UI.Control class
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Wed, 21 Jul 2004 13:38:23 -0400 (EDT)
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 aaron@starryonline.com.
http://bugzilla.ximian.com/show_bug.cgi?id=61790
--- shadow/61790 2004-07-21 13:38:23.000000000 -0400
+++ shadow/61790.tmp.22162 2004-07-21 13:38:23.000000000 -0400
@@ -0,0 +1,57 @@
+Bug#: 61790
+Product: Mono: Compilers
+Version: unspecified
+OS: GNU/Linux [Other]
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Wishlist
+Component: C#
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: aaron@starryonline.com
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: Mono mcs compiler does not support System.Web.UI.Control class
+
+Please fill in this template when reporting a bug, unless you know what
+you are doing.
+Description of Problem:
+Mono mcs compiler does not support System.Web.UI.Control class
+
+Steps to reproduce the problem:
+1. Create test.cs file with the following content:
+using System;
+using System.Web;
+using System.Web.UI;
+
+namespace Test
+{
+ public class HeaderBarControl : System.Web.UI.Control
+ {
+ protected override void CreateChildControls()
+ {
+ }
+ }
+}
+
+2. Compile it with mcs: "mcs test.cs"
+3. mcs returns with an error saying that it cannot find type:
+test.cs(7) error CS0246: Cannot find type `System.Web.UI.Control'
+Compilation failed: 1 error(s), 0 warnings
+
+
+Actual Results:
+test.cs(7) error CS0246: Cannot find type `System.Web.UI.Control'
+Compilation failed: 1 error(s), 0 warnings
+
+Expected Results:
+Compile successful
+
+How often does this happen?
+All the time
+
+Additional Information:
+None