[Mono-bugs] [Bug 60681][Wis] New - wrong html code generation for <input> tags

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Thu, 24 Jun 2004 04:42:21 -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 gustav-w-s@online.de.

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

--- shadow/60681	2004-06-24 04:42:21.000000000 -0400
+++ shadow/60681.tmp.23741	2004-06-24 04:42:21.000000000 -0400
@@ -0,0 +1,51 @@
+Bug#: 60681
+Product: Mono: Class Libraries
+Version: unspecified
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Wishlist
+Component: Sys.Web
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: gustav-w-s@online.de               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: wrong html code generation for <input> tags
+
+Description of Problem:
+All WebControls that render as "input" tags get closed twice
+
+Steps to reproduce the problem:
+Try this simple test page:
+<html>
+<body>
+<form runat="server">
+<asp:Button Text="test 1" runat="server" />
+<asp:TextBox Text="test 2" runat="server" />
+<input type="button" value="test 3" runat="server" />
+</form>
+</body>
+</html>
+
+Actual Results:
+...
+<input type="submit" name="_ctrl5c" value="test 1" />
+</input>
+<input name="_ctrl7c" value="test 2" type="text" />
+</input>
+<input name="_ctrl9c" type="button" value="test 3" />
+...
+
+Expected Results:
+...
+<input type="submit" name="_ctrl5c" value="test 1" />
+<input name="_ctrl7c" value="test 2" type="text" />
+<input name="_ctrl9c" type="button" value="test 3" />
+...
+
+How often does this happen? 
+Always