[Mono-bugs] [Bug 82546][Maj] New - [Regression] Control.FindControl() is case sensitive

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Thu Aug 23 09:23:06 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 juraj at hotfeet.ch.

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

--- shadow/82546	2007-08-23 09:23:06.000000000 -0400
+++ shadow/82546.tmp.1371	2007-08-23 09:23:06.000000000 -0400
@@ -0,0 +1,36 @@
+Bug#: 82546
+Product: Mono: Class Libraries
+Version: 1.2
+OS: 
+OS Details: FC6
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Major
+Component: Sys.Web
+AssignedTo: mhabersack at novell.com                            
+ReportedBy: juraj at hotfeet.ch               
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: [Regression] Control.FindControl() is case sensitive
+
+Control.FindControl() is case sensitive on Mono but not on MS.NET.
+
+Test case:
+----------
+<script runat="server">
+void Page_Load(object o, EventArgs e) {
+	if(FindControl("Small") == null)
+		throw new ApplicationException("FindControl is case sensitive! MS.NET is
+not.");
+}
+</script>
+<asp:Literal id="small" runat="server" text="Everything ok." />
+-------
+
+-> Mono:   Exception message
+-> MS.NET: "Everything ok" page
+
+Commit 83536 broke this most probably.


More information about the mono-bugs mailing list