2
0

HtmlGenericControl.cs 545 B

1234567891011121314151617181920212223242526272829303132
  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. public class HtmlGenericControl : HtmlContainerControl {
  14. public HtmlGenericControl(){}
  15. public HtmlGenericControl(string tag): base(tag){}
  16. public new string TagName {
  17. get
  18. {
  19. return _tagName;
  20. }
  21. set{
  22. _tagName = value;
  23. }
  24. }
  25. }
  26. }