ChangeLog 7.9 KB

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