Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlTextArea.cs')
-rw-r--r--mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlTextArea.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlTextArea.cs b/mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlTextArea.cs
index 382fc1a559b..36fd7ade824 100644
--- a/mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlTextArea.cs
+++ b/mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlTextArea.cs
@@ -127,7 +127,7 @@ namespace System.Web.UI.HtmlControls{
protected override void AddParsedSubObject(object obj){
if (obj is LiteralControl || obj is DataBoundLiteralControl)
- AddParsedSubObject(obj);
+ base.AddParsedSubObject(obj);
else
throw new NotSupportedException("HtmlTextArea cannot have children of Type " + obj.GetType().Name);
}