* HtmlGenericControl.cs: ConstructorNeedsTag defaults to false so we need to pass true here. Fixes bug #47918. svn path=/trunk/mcs/; revision=17635
@@ -1,3 +1,8 @@
+2003-08-26 Gonzalo Paniagua Javier <[email protected]>
+
+ * HtmlGenericControl.cs: ConstructorNeedsTag defaults to false so we
+ need to pass true here. Fixes bug #47918.
2003-07-17 Andreas Nahr <[email protected]>
* HtmlContainerControl.cs: Added attributes
@@ -16,7 +16,7 @@ using System.Web.UI;
namespace System.Web.UI.HtmlControls{
- [ConstructorNeedsTag]
+ [ConstructorNeedsTag(true)]
public class HtmlGenericControl : HtmlContainerControl {
public HtmlGenericControl() :
this ("span")