ChangeLog 8.4 KB

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