ChangeLog 6.9 KB

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