ChangeLog 8.7 KB

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