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 [EMAIL PROTECTED] http://bugzilla.ximian.com/show_bug.cgi?id=81069 --- shadow/81069 2007-03-28 21:55:14.000000000 -0500 +++ shadow/81069.tmp.11848 2007-03-28 22:14:35.000000000 -0500 @@ -105,6 +105,18 @@ ... It is easy to get lost in there, I still have no idea why the postbackdata hashtable being passed is null. All I know so far is that this only happens in Mono (not in IIS w/ .NET 1.0, 1.1 or 2.0), and only on Mono version > 1.2 + +------- Additional Comments From [EMAIL PROTECTED] 2007-03-28 22:14 ------- +Hmmm, I looked at some other controls, and they seem to check for whether the control is +Enabled/Disabled, and if so, the return false before attempting to process the postbackdata +collection. + +I added the following line to the front of the LoadPostBackData methods, or rather their +respective implementations, for HtmlTextArea and HtmlInputText + +if(Disabled) return false; + +And the problem was corrected... ??? _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
