ChangeLog 7.3 KB

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