[Mono-bugs] [Bug 80633][Nor] Changed - ASP.NET is not XHTML 1.0 Transitional
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Thu Apr 5 06:08:40 EDT 2007
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 dna at informatik.uni-kiel.de.
http://bugzilla.ximian.com/show_bug.cgi?id=80633
--- shadow/80633 2007-03-12 08:27:44.000000000 -0500
+++ shadow/80633.tmp.6661 2007-04-05 06:08:40.000000000 -0400
@@ -17,6 +17,39 @@
Summary: ASP.NET is not XHTML 1.0 Transitional
Description of Problem:
Setting "<xhtmlConformance mode="Transitional" />" in my Web.config (which
is also the defaul value), but ASP.NET is still not XHTML 1.0 Transitional
valid.
+
+------- Additional Comments From dna at informatik.uni-kiel.de 2007-04-05 06:08 -------
+Some examples:
+
+MS.NET:
+src="/WebResource.axd?d=wuHCulEJ7ItpvTZ6fgLBkA2&t=632969969079556256"
+type="text/javascript"
+Mono:
+src="/WebResource.axd?a=s&r=Menu.js&t=633111932920000000"
+type="text/javascript"
+
+-------
+MS.NET:
+<form method="post" action="Default.aspx" id="aspnetForm">
+Mono:
+<form name="ctl00$form1" method="post" action="Default.aspx"
+id="ctl00_form1">
+
+The $ in the name attribute is not allowed.
+
+-------
+ASP.NET Menu controls generates on Mono:
+<script language=javascript>
+<!--
+var ctl00_TopMenu_data = new Object ();
+ctl00_TopMenu_data.disappearAfter = 500;
+ctl00_TopMenu_data.vertical = false;
+
+// -->
+</script>
+
+The type attribute is missing.
+
More information about the mono-bugs
mailing list