ChangeLog 8.5 KB

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