ChangeLog 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  2. * HtmlGenericControl.cs: fixed TagName signature and get/set.
  3. * HtmlInputImage.cs: added attribute and fixed signature of ServerClick.
  4. * HtmlInputText.cs: added attribute.
  5. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  6. * HtmlForm.cs: don't render action attribute.
  7. 2002-07-04 Gonzalo Paniagua Javier <[email protected]>
  8. * HtmlContainerControl.cs:
  9. (CreateControlCollection): added. All containers must have a non-empty
  10. control collection.
  11. 2002-06-30 Gonzalo Paniagua Javier <[email protected]>
  12. * System.Web.UI.HtmlControls/HtmlAnchor.cs:
  13. * System.Web.UI.HtmlControls/HtmlButton.cs:
  14. * System.Web.UI.HtmlControls/HtmlControl.cs:
  15. * System.Web.UI.HtmlControls/HtmlForm.cs:
  16. * System.Web.UI.HtmlControls/HtmlGenericControl.cs:
  17. * System.Web.UI.HtmlControls/HtmlInputButton.cs:
  18. * System.Web.UI.HtmlControls/HtmlInputCheckBox.cs:
  19. * System.Web.UI.HtmlControls/HtmlInputControl.cs:
  20. * System.Web.UI.HtmlControls/HtmlInputFile.cs:
  21. * System.Web.UI.HtmlControls/HtmlInputHidden.cs:
  22. * System.Web.UI.HtmlControls/HtmlInputImage.cs:
  23. * System.Web.UI.HtmlControls/HtmlInputRadioButton.cs:
  24. * System.Web.UI.HtmlControls/HtmlInputText.cs:
  25. * System.Web.UI.HtmlControls/HtmlSelect.cs:
  26. * System.Web.UI.HtmlControls/HtmlTable.cs:
  27. * System.Web.UI.HtmlControls/HtmlTableCell.cs:
  28. * System.Web.UI.HtmlControls/HtmlTableRow.cs:
  29. * System.Web.UI.HtmlControls/HtmlTextArea.cs:
  30. Fixes based on class status page:
  31. - Add attributes (DefaultEvent, ParseChildren).
  32. - Fix declarations.
  33. - Explicitly implement some interfaces (IPostBackDataHandler
  34. and IPostBackEventHandler).
  35. - Implemented some missing methods.
  36. 2002-06-24 Gonzalo Paniagua Javier <[email protected]>
  37. * HtmlForm.cs:
  38. (RenderChildren): use OnFormRender and OnFormPostRender.
  39. 2002-06-09 Gonzalo Paniagua Javier <[email protected]>
  40. * HtmlSelect.cs:
  41. (RenderAttributes): new -> override and fixes stack overflow.
  42. (RenderChildren): only 1 option can be selected at any given time
  43. except when Multiple property is true.
  44. (Multiple): the attribute value is either "true" or "false", not
  45. "multiple".
  46. * HtmlTable.cs:
  47. (Add):
  48. (AddAt): allow HtmlTableRow as children, not HtmlTableCell.
  49. * HtmlTableCell.cs:
  50. (RenderEndTag): new -> override.
  51. * HtmlTableRow.cs:
  52. (RenderChildren): fixed another stack overflow.
  53. (RenderEndTag): new -> override.
  54. * HtmlTextArea.cs:
  55. (RenderAttributes): new -> override.
  56. 2002-06-07 Gonzalo Paniagua Javier <[email protected]>
  57. * HtmlInputHidden.cs: fixed constructor.
  58. * HtmlInputRadioButton.cs:
  59. (RenderAttributes): fixed stack overflow.
  60. (Name):
  61. (RenderedName): new -> override.
  62. (Value): new property.
  63. * HtmlInputText.cs:
  64. (RenderAttributes): fixed the same kind of stack overflow and make
  65. string comparison case insensitive.
  66. 2002-06-07 Gonzalo Paniagua Javier <[email protected]>
  67. * HtmlForm.cs: fixed name of Enctype property and render enctype
  68. enctype attribute.
  69. * HtmlInputControl.cs: tag type is "input", not "type".
  70. 2002-06-06 Gonzalo Paniagua Javier <[email protected]>
  71. * HtmlControl.cs: Render contents moved to new RenderBeginTag method,
  72. defined in MS docs.
  73. * HtmlForm.cs: Render output when no IE browser.
  74. * HtmlInputButton.cs: added constructor without arguments. Xsp used it,
  75. though now it always use the other .ctor.
  76. * HtmlInputControl.cs: cosmetic changes and implemented set_Name.
  77. 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
  78. * HtmlButton.cs: RenderAttributes is an override, not new.
  79. * HtmlContainerControl.cs: use the new Render method in HtmlControl.
  80. * HtmlControl.cs: added Render method to render the tag and its
  81. attributes. Works for container and non-containers.
  82. * HtmlImage.cs: RenderAttributes don't need to be new. Implemented
  83. Height property.
  84. 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
  85. * HtmlContainerControl.cs: some formatting and use HttpUtility.Encode
  86. instead of Page.Server to encode InnerText.
  87. 2002-06-04 Gonzalo Paniagua Javier <[email protected]>
  88. * HtmlAnchor.cs:
  89. (RenderAttributes): new -> override and fixed little bug that made
  90. it cause an stack overflow.
  91. * HtmlContainerControl.cs: reformatted and added tag and attributes
  92. rendering.
  93. * HtmlGenericControl.cs: removed TagName, which is already in
  94. HtmlControl.
  95. * HtmlTable.cs:
  96. (RenderEndTag): new -> override.
  97. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  98. * System.Web.UI.HtmlControls/HtmlForm.cs:
  99. (RenderAttributes): changed new by override.
  100. (Name): allow setting the property.
  101. 2002-05-10 Duncan Mak <[email protected]>
  102. * HtmlTableCellCollection.cs (this): Updated the indexer to return
  103. the right type, HtmlTableCell instead of HtmlTableRow.
  104. * HtmlInputImage.cs (OnServerClick): Commented out parts that
  105. won't compile.
  106. * HtmlForm.cs (RenderAttributes):
  107. (RenderChildren): Commented out code that doesn't compile.
  108. 2002-05-07 Duncan Mak <[email protected]>
  109. * HtmlSelect.cs (TrackViewState): Added 'new' keyword to avoid
  110. clashing with the method defined in the parent class.
  111. (OnDataBinding): Added missing casts.
  112. * HtmlForm.cs (Render): Fixed call too SetAttribute, need to cast
  113. 'this' to IAttributeAccessor before calling interface method.
  114. Also renamed some calls to reflect changes in the API.
  115. * HtmlControl.cs (WriteOnClickAttribute): Made it not static and
  116. fixed a typo.
  117. 2001-09-03 Leen Toelen <[email protected]>
  118. * HtmlAnchor.cs: Initial implementation.
  119. * HtmlTextArea.cs: Initial implementation.
  120. 2001-08-22 Bob Smith <[email protected]>
  121. * HtmlContainerControl.cs: Initial implementation.
  122. * HtmlControl.cs: Initial implementation.
  123. * HtmlGenericControl.cs: Initial implementation.