ChangeLog 8.9 KB

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