ChangeLog 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. 2003-01-29 Gonzalo Paniagua Javier <[email protected]>
  2. * HtmlControl.cs: _tagName is now internal.
  3. * HtmlGenericControl.cs: use the field in HtmlControl to keep the tag
  4. name.
  5. 2003-01-17 Gonzalo Paniagua Javier <[email protected]>
  6. * System.Web.UI.HtmlControls/HtmlForm.cs: render 'action' attribute.
  7. 2003-01-03 Gonzalo Paniagua Javier <[email protected]>
  8. * HtmlInputButton.cs: fixed bug #35677.
  9. 2003-01-03 Gonzalo Paniagua Javier <[email protected]>
  10. * HtmlInputControl.cs: fixed bug #35673.
  11. 2003-01-03 Gonzalo Paniagua Javier <[email protected]>
  12. * HtmlInputText.cs: fixed bug #35670.
  13. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  14. * HtmlSelect.cs: fixed LoadViewstate.
  15. 2002-11-07 Gonzalo Paniagua Javier <[email protected]>
  16. * HtmlButton.cs: make it do a POST if the button has any ServerClick
  17. events.
  18. 2002-09-23 Gonzalo Paniagua Javier <[email protected]>
  19. * HtmlAnchor.cs:
  20. * HtmlButton.cs:
  21. * HtmlContainerControl.cs:
  22. * HtmlControl.cs:
  23. * HtmlForm.cs:
  24. * HtmlGenericControl.cs:
  25. * HtmlImage.cs:
  26. * HtmlInputButton.cs:
  27. * HtmlInputCheckBox.cs:
  28. * HtmlInputControl.cs:
  29. * HtmlInputFile.cs:
  30. * HtmlInputHidden.cs:
  31. * HtmlInputImage.cs:
  32. * HtmlInputRadioButton.cs:
  33. * HtmlInputText.cs:
  34. * HtmlSelect.cs:
  35. * HtmlTable.cs:
  36. * HtmlTableCell.cs:
  37. * HtmlTableRow.cs:
  38. * HtmlTextArea.cs: added almost all missing attributes.
  39. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  40. * HtmlControl.cs: the attributes must use ViewState as its StateBag,
  41. if not style values are lost between postbacks.
  42. 2002-07-17 Gonzalo Paniagua Javier <[email protected]>
  43. * HtmlAnchor.cs:
  44. * HtmlButton.cs:
  45. * HtmlInputButton.cs:
  46. * HtmlInputCheckBox.cs:
  47. * HtmlInputHidden.cs:
  48. * HtmlInputImage.cs:
  49. * HtmlInputText.cs:
  50. * HtmlTextArea.cs: Initialize EventHandlerList indexer.
  51. * HtmlContainerControl.cs: almost rewritten to use a LiteralControl
  52. instead of maintaining some flags and strings. Implemented
  53. LoadViewState.
  54. * HtmlControl.cs: fixed constructor and added ViewStateIgnoreCase.
  55. * HtmlSelect.cs: fixed TrackViewState, SaveViewState, SelectedIndices
  56. and Value.
  57. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  58. * HtmlGenericControl.cs: fixed TagName signature and get/set.
  59. * HtmlInputImage.cs: added attribute and fixed signature of ServerClick.
  60. * HtmlInputText.cs: added attribute.
  61. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  62. * HtmlForm.cs: don't render action attribute.
  63. 2002-07-04 Gonzalo Paniagua Javier <[email protected]>
  64. * HtmlContainerControl.cs:
  65. (CreateControlCollection): added. All containers must have a non-empty
  66. control collection.
  67. 2002-06-30 Gonzalo Paniagua Javier <[email protected]>
  68. * System.Web.UI.HtmlControls/HtmlAnchor.cs:
  69. * System.Web.UI.HtmlControls/HtmlButton.cs:
  70. * System.Web.UI.HtmlControls/HtmlControl.cs:
  71. * System.Web.UI.HtmlControls/HtmlForm.cs:
  72. * System.Web.UI.HtmlControls/HtmlGenericControl.cs:
  73. * System.Web.UI.HtmlControls/HtmlInputButton.cs:
  74. * System.Web.UI.HtmlControls/HtmlInputCheckBox.cs:
  75. * System.Web.UI.HtmlControls/HtmlInputControl.cs:
  76. * System.Web.UI.HtmlControls/HtmlInputFile.cs:
  77. * System.Web.UI.HtmlControls/HtmlInputHidden.cs:
  78. * System.Web.UI.HtmlControls/HtmlInputImage.cs:
  79. * System.Web.UI.HtmlControls/HtmlInputRadioButton.cs:
  80. * System.Web.UI.HtmlControls/HtmlInputText.cs:
  81. * System.Web.UI.HtmlControls/HtmlSelect.cs:
  82. * System.Web.UI.HtmlControls/HtmlTable.cs:
  83. * System.Web.UI.HtmlControls/HtmlTableCell.cs:
  84. * System.Web.UI.HtmlControls/HtmlTableRow.cs:
  85. * System.Web.UI.HtmlControls/HtmlTextArea.cs:
  86. Fixes based on class status page:
  87. - Add attributes (DefaultEvent, ParseChildren).
  88. - Fix declarations.
  89. - Explicitly implement some interfaces (IPostBackDataHandler
  90. and IPostBackEventHandler).
  91. - Implemented some missing methods.
  92. 2002-06-24 Gonzalo Paniagua Javier <[email protected]>
  93. * HtmlForm.cs:
  94. (RenderChildren): use OnFormRender and OnFormPostRender.
  95. 2002-06-09 Gonzalo Paniagua Javier <[email protected]>
  96. * HtmlSelect.cs:
  97. (RenderAttributes): new -> override and fixes stack overflow.
  98. (RenderChildren): only 1 option can be selected at any given time
  99. except when Multiple property is true.
  100. (Multiple): the attribute value is either "true" or "false", not
  101. "multiple".
  102. * HtmlTable.cs:
  103. (Add):
  104. (AddAt): allow HtmlTableRow as children, not HtmlTableCell.
  105. * HtmlTableCell.cs:
  106. (RenderEndTag): new -> override.
  107. * HtmlTableRow.cs:
  108. (RenderChildren): fixed another stack overflow.
  109. (RenderEndTag): new -> override.
  110. * HtmlTextArea.cs:
  111. (RenderAttributes): new -> override.
  112. 2002-06-07 Gonzalo Paniagua Javier <[email protected]>
  113. * HtmlInputHidden.cs: fixed constructor.
  114. * HtmlInputRadioButton.cs:
  115. (RenderAttributes): fixed stack overflow.
  116. (Name):
  117. (RenderedName): new -> override.
  118. (Value): new property.
  119. * HtmlInputText.cs:
  120. (RenderAttributes): fixed the same kind of stack overflow and make
  121. string comparison case insensitive.
  122. 2002-06-07 Gonzalo Paniagua Javier <[email protected]>
  123. * HtmlForm.cs: fixed name of Enctype property and render enctype
  124. enctype attribute.
  125. * HtmlInputControl.cs: tag type is "input", not "type".
  126. 2002-06-06 Gonzalo Paniagua Javier <[email protected]>
  127. * HtmlControl.cs: Render contents moved to new RenderBeginTag method,
  128. defined in MS docs.
  129. * HtmlForm.cs: Render output when no IE browser.
  130. * HtmlInputButton.cs: added constructor without arguments. Xsp used it,
  131. though now it always use the other .ctor.
  132. * HtmlInputControl.cs: cosmetic changes and implemented set_Name.
  133. 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
  134. * HtmlButton.cs: RenderAttributes is an override, not new.
  135. * HtmlContainerControl.cs: use the new Render method in HtmlControl.
  136. * HtmlControl.cs: added Render method to render the tag and its
  137. attributes. Works for container and non-containers.
  138. * HtmlImage.cs: RenderAttributes don't need to be new. Implemented
  139. Height property.
  140. 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
  141. * HtmlContainerControl.cs: some formatting and use HttpUtility.Encode
  142. instead of Page.Server to encode InnerText.
  143. 2002-06-04 Gonzalo Paniagua Javier <[email protected]>
  144. * HtmlAnchor.cs:
  145. (RenderAttributes): new -> override and fixed little bug that made
  146. it cause an stack overflow.
  147. * HtmlContainerControl.cs: reformatted and added tag and attributes
  148. rendering.
  149. * HtmlGenericControl.cs: removed TagName, which is already in
  150. HtmlControl.
  151. * HtmlTable.cs:
  152. (RenderEndTag): new -> override.
  153. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  154. * System.Web.UI.HtmlControls/HtmlForm.cs:
  155. (RenderAttributes): changed new by override.
  156. (Name): allow setting the property.
  157. 2002-05-10 Duncan Mak <[email protected]>
  158. * HtmlTableCellCollection.cs (this): Updated the indexer to return
  159. the right type, HtmlTableCell instead of HtmlTableRow.
  160. * HtmlInputImage.cs (OnServerClick): Commented out parts that
  161. won't compile.
  162. * HtmlForm.cs (RenderAttributes):
  163. (RenderChildren): Commented out code that doesn't compile.
  164. 2002-05-07 Duncan Mak <[email protected]>
  165. * HtmlSelect.cs (TrackViewState): Added 'new' keyword to avoid
  166. clashing with the method defined in the parent class.
  167. (OnDataBinding): Added missing casts.
  168. * HtmlForm.cs (Render): Fixed call too SetAttribute, need to cast
  169. 'this' to IAttributeAccessor before calling interface method.
  170. Also renamed some calls to reflect changes in the API.
  171. * HtmlControl.cs (WriteOnClickAttribute): Made it not static and
  172. fixed a typo.
  173. 2001-09-03 Leen Toelen <[email protected]>
  174. * HtmlAnchor.cs: Initial implementation.
  175. * HtmlTextArea.cs: Initial implementation.
  176. 2001-08-22 Bob Smith <[email protected]>
  177. * HtmlContainerControl.cs: Initial implementation.
  178. * HtmlControl.cs: Initial implementation.
  179. * HtmlGenericControl.cs: Initial implementation.