HtmlGenericControl.cs 434 B

123456789101112131415161718192021
  1. /
  2. // System.Web.UI.HtmlControls.HtmlGenericControl.cs
  3. //
  4. // Author:
  5. // Bob Smith <[email protected]>
  6. //
  7. // (C) Bob Smith
  8. //
  9. using System;
  10. using System.Web;
  11. using System.Web.UI;
  12. namespace System.Web.UI.HtmlControls
  13. {
  14. public class HtmlGenericControl : HtmlContainerControl
  15. {
  16. public HtmlContainerControl() : base(); {}
  17. public HtmlContainerControl(string tag) : base(tag) {}
  18. }
  19. }