ChangeLog 8.0 KB

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