[Mono-bugs] [Bug 79020][Nor] New - [PATCH] TextBox does not render name attribute if you do not specify ID property

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Sun Aug 6 11:42:09 EDT 2006


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 alex at buayacorp.com.

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

--- shadow/79020	2006-08-06 11:42:09.000000000 -0400
+++ shadow/79020.tmp.25767	2006-08-06 11:42:09.000000000 -0400
@@ -0,0 +1,51 @@
+Bug#: 79020
+Product: Mono: Class Libraries
+Version: unspecified
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: Sys.Web
+AssignedTo: gonzalo at ximian.com                            
+ReportedBy: alex at buayacorp.com               
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: [PATCH] TextBox does not render name attribute if you do not specify ID property
+
+Please fill in this template when reporting a bug, unless you know what you
+are doing.
+Description of Problem:
+
+System.Web.UI.WebControls.TextBox does not render "name" attribute if you
+do not specify ID property for the 2.0 profile. (see <a
+href="show_bug.cgi?id=76771">bug 76771</a> for a derived problem)
+
+Steps to reproduce the problem:
+1. View this page under 2.0 profile
+
+<%@ Page Language="c#" %>
+<html>
+<body>
+<form runat=server>
+	<asp:textbox runat=server/>
+</form>
+</body>
+</html>
+
+2. View the HTML source that is rendered.
+
+Actual Results:
+<input type="text" />
+
+Expected Results:
+<input type="text" name="_ctl1c" />
+
+How often does this happen? 
+Always
+
+Additional Information:
+I'll attach the patch.


More information about the mono-bugs mailing list