[Mono-bugs] [Bug 76802][Wis] New - Invalid assignment for
HtmlTextArea.Name
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Wed Nov 23 08:36:34 EST 2005
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 gianghu at gmail.com.
http://bugzilla.ximian.com/show_bug.cgi?id=76802
--- shadow/76802 2005-11-23 08:36:34.000000000 -0500
+++ shadow/76802.tmp.19618 2005-11-23 08:36:34.000000000 -0500
@@ -0,0 +1,42 @@
+Bug#: 76802
+Product: Mono: Class Libraries
+Version: 1.1
+OS: other
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Wishlist
+Component: Sys.Web
+AssignedTo: gonzalo at ximian.com
+ReportedBy: gianghu at gmail.com
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: Invalid assignment for HtmlTextArea.Name
+
+Description of Problem:
+Invalid assignment for HtmlTextArea.Name caused browser can not submit
+changed in TEXTAREA.
+
+Steps to reproduce the problem:
+1. Create custom control (c0) which included HtmlTextArea
+2. Create custom control (c1) which included c0
+3. Create form.aspx which included c1
+4. Submit form.aspx
+
+Actual Results:
+<textarea name="htmlarea" id="c0_c1_htmlarea">
+
+Expected Results:
+<textarea name="c0:c1:htmlarea" id="c0_c1_htmlarea">
+
+How often does this happen?
+always
+
+Additional Information:
+In HtmlTextArea:78:
+ get { return ID; }
+Should be:
+ get { return UniqueID; }
More information about the mono-bugs
mailing list