2
0

ChangeLog 6.4 KB

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