2
0

ChangeLog 7.1 KB

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