[Mono-bugs] [Bug 65586][Maj] Changed - Inside .ascx, RadioButtons ignore GroupName

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Thu, 9 Sep 2004 23:50:27 -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 atsushi@ximian.com.

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

--- shadow/65586	2004-09-09 00:54:57.000000000 -0400
+++ shadow/65586.tmp.1825	2004-09-09 23:50:27.000000000 -0400
@@ -1,14 +1,14 @@
 Bug#: 65586
 Product: Mono: Class Libraries
 Version: unspecified
-OS: 
+OS: unknown
 OS Details: 
 Status: NEW   
 Resolution: 
-Severity: 
+Severity: Unknown
 Priority: Major
 Component: Sys.Web
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: atsushi@ximian.com               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
@@ -42,6 +42,66 @@
 <asp:RadioButton ID="RadioButton01" Runat="server" Text="RadioButton01"
 BackColor="Tomato" Checked=True GroupName="RadioButton" />
 <asp:RadioButton ID="Radiobutton02" Runat="server" Text="RadioButton02"
 BackColor="CornflowerBlue" GroupName="RadioButton" />
 <asp:RadioButton ID="Radiobutton03" Runat="server" Text="RadioButton03"
 BackColor="Chartreuse" GroupName="RadioButton" />
+
+------- Additional Comments From atsushi@ximian.com  2004-09-09 23:50 -------
+Oops, I forgot to attach generated HTML output.
+
+MS.NET:
+
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > 
+
+<html>
+  <head><title>WF001</title></head>
+  <body>
+    <form name="Form1" method="post" action="WF001.aspx" id="Form1">
+<input type="hidden" name="__VIEWSTATE"
+value="dDwtNjM4OTM3NDk4OztsPFRFU1QwMDE6UmFkaW9CdXR0b24wMTtURVNUMDAxOlJhZGlvYnV0dG9uMDI7VEVTVDAwMTpSYWRpb2J1dHRvbjAyO1RFU1QwMDE6UmFkaW9idXR0b24wMztURVNUMDAxOlJhZGlvYnV0dG9uMDM7Pj5ZhbPzmdtXIDwUWAw5JMt0gVtHog=="
+/>
+
+	<span><input id="TEST001_RadioButton01" type="radio"
+name="TEST001:RadioButton" value="RadioButton01" checked="checked"
+/><label for="TEST001_RadioButton01">RadioButton01</label></span>
+<span><input id="TEST001_Radiobutton02" type="radio"
+name="TEST001:RadioButton" value="Radiobutton02" /><label
+for="TEST001_Radiobutton02">RadioButton02</label></span>
+
+<span><input id="TEST001_Radiobutton03" type="radio"
+name="TEST001:RadioButton" value="Radiobutton03" /><label
+for="TEST001_Radiobutton03">RadioButton03</label></span>
+    </form>
+  </body>
+</html>
+
+Mono:
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > 
+
+<html>
+  <head><title>WF001</title></head>
+  <body>
+    <form name="Form1" method="post" action="WF001.aspx" enctype=""
+id="Form1">
+<input type="hidden" name="__VIEWSTATE"
+value="DA0ADgEFAQ4BDQAOAQUBDgENAA4DBQAFAgUEDgMNDAwOAQEHRW5hYmxlZA4BCAAAAA0MDA4BAgAADgEIAAAADQwMDgECAAAOAQgAAAAOBQEVVEVTVDAwMTpSYWRpb0J1dHRvbjAxARVURVNUMDAxOlJhZGlvYnV0dG9uMDICAgABFVRFU1QwMDE6UmFkaW9idXR0b24wMwIDAA=="
+/>
+
+	<span style="background-color:Tomato;"><input
+id="TEST001_RadioButton01" type="radio"
+name="RadioButtonRadioButton01" value="RadioButton01"
+checked="checked" /><label
+for="TEST001_RadioButton01">RadioButton01</label></span>
+<span style="background-color:CornflowerBlue;"><input
+id="TEST001_Radiobutton02" type="radio"
+name="RadioButtonRadiobutton02" value="Radiobutton02" /><label
+for="TEST001_Radiobutton02">RadioButton02</label></span>
+<span style="background-color:Chartreuse;"><input
+id="TEST001_Radiobutton03" type="radio"
+name="RadioButtonRadiobutton03" value="Radiobutton03" /><label
+for="TEST001_Radiobutton03">RadioButton03</label></span>
+
+    </form>
+  </body>
+</html>
+