[Mono-bugs] [Bug 33436][Nor] New - The tabcontrol.aspx and tabcontrol2.aspx samples not work.
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
7 Nov 2002 15:42:46 -0000
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 ztashev@mail.plovdiv.techno-link.com.
http://bugzilla.ximian.com/show_bug.cgi?id=33436
--- shadow/33436 Thu Nov 7 10:42:46 2002
+++ shadow/33436.tmp.3077 Thu Nov 7 10:42:46 2002
@@ -0,0 +1,93 @@
+Bug#: 33436
+Product: Mono/Runtime
+Version: unspecified
+OS: Red Hat 6.2
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: misc
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: ztashev@mail.plovdiv.techno-link.com
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: The tabcontrol.aspx and tabcontrol2.aspx samples not work.
+
+Please fill in this template when reporting a bug, unless you know what
+you are doing.
+Description of Problem:
+
+The tabcontrol.aspx and tabcontrol2.aspx samples not work.
+
+Steps to reproduce the problem:
+1. Start demo xsp server.
+2. Hit http://localhost:8080/ tabcontrol.aspx or http://localhost:8080/
+tabcontrol2.aspx
+3.
+
+Actual Results:
+None
+
+Expected Results:
+Display pages.
+
+How often does this happen?
+Every time.
+
+Additional Information:
+Suppose diff:
+Index: class/System.Web/System.Web.Compilation/AspGenerator.cs
+===================================================================
+RCS
+file: /mono/mcs/class/System.Web/System.Web.Compilation/AspGenerator.cs,v
+retrieving revision 1.5
+diff -u -r1.5 AspGenerator.cs
+--- class/System.Web/System.Web.Compilation/AspGenerator.cs 2 Nov 2002
+03:12:31 -0000 1.5
++++ class/System.Web/System.Web.Compilation/AspGenerator.cs 7 Nov 2002
+15:23:21 -0000
+@@ -503,7 +503,7 @@
+ throw new ApplicationException ("Invalid
+attributes for @ Register: " +
+
+ att.ToString ());
+ prolog.AppendFormat ("\tusing {0};\n", name_space);
+- string dll = "output" +
+Path.DirectorySeparatorChar + assembly_name + ".dll";
++ string dll = "bin" + Path.DirectorySeparatorChar +
+assembly_name + ".dll";
+ Foundry.RegisterFoundry (tag_prefix, dll,
+name_space);
+ buildOptions.AppendFormat ("//<reference dll=\"{0}
+\"/>\n", dll);
+ return;
+Index: class/System.Web/System.Web.Compilation/TemplateFactory.cs
+===================================================================
+RCS
+file: /mono/mcs/class/System.Web/System.Web.Compilation/TemplateFactory.cs,
+v
+retrieving revision 1.4
+diff -u -r1.4 TemplateFactory.cs
+--- class/System.Web/System.Web.Compilation/TemplateFactory.cs 27 Oct
+2002 19:55:27 -0000 1.4
++++ class/System.Web/System.Web.Compilation/TemplateFactory.cs 7 Nov 2002
+15:23:21 -0000
+@@ -161,7 +161,7 @@
+
+
+ private void AddReference (string reference)
+
+ {
+
+- string arg = String.Format ("/r:{0}.dll ",
+reference);
+
++ string arg = String.Format ("/r:{0} ",
+reference);
+
+ cscOptions.Append (arg);
+
+ }