2
0

ChangeLog 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. 2002-06-09 Gonzalo Paniagua Javier <[email protected]>
  2. * HtmlSelect.cs:
  3. (RenderAttributes): new -> override and fixes stack overflow.
  4. (RenderChildren): only 1 option can be selected at any given time
  5. except when Multiple property is true.
  6. (Multiple): the attribute value is either "true" or "false", not
  7. "multiple".
  8. * HtmlTable.cs:
  9. (Add):
  10. (AddAt): allow HtmlTableRow as children, not HtmlTableCell.
  11. * HtmlTableCell.cs:
  12. (RenderEndTag): new -> override.
  13. * HtmlTableRow.cs:
  14. (RenderChildren): fixed another stack overflow.
  15. (RenderEndTag): new -> override.
  16. * HtmlTextArea.cs:
  17. (RenderAttributes): new -> override.
  18. 2002-06-07 Gonzalo Paniagua Javier <[email protected]>
  19. * HtmlInputHidden.cs: fixed constructor.
  20. * HtmlInputRadioButton.cs:
  21. (RenderAttributes): fixed stack overflow.
  22. (Name):
  23. (RenderedName): new -> override.
  24. (Value): new property.
  25. * HtmlInputText.cs:
  26. (RenderAttributes): fixed the same kind of stack overflow and make
  27. string comparison case insensitive.
  28. 2002-06-07 Gonzalo Paniagua Javier <[email protected]>
  29. * HtmlForm.cs: fixed name of Enctype property and render enctype
  30. enctype attribute.
  31. * HtmlInputControl.cs: tag type is "input", not "type".
  32. 2002-06-06 Gonzalo Paniagua Javier <[email protected]>
  33. * HtmlControl.cs: Render contents moved to new RenderBeginTag method,
  34. defined in MS docs.
  35. * HtmlForm.cs: Render output when no IE browser.
  36. * HtmlInputButton.cs: added constructor without arguments. Xsp used it,
  37. though now it always use the other .ctor.
  38. * HtmlInputControl.cs: cosmetic changes and implemented set_Name.
  39. 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
  40. * HtmlButton.cs: RenderAttributes is an override, not new.
  41. * HtmlContainerControl.cs: use the new Render method in HtmlControl.
  42. * HtmlControl.cs: added Render method to render the tag and its
  43. attributes. Works for container and non-containers.
  44. * HtmlImage.cs: RenderAttributes don't need to be new. Implemented
  45. Height property.
  46. 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
  47. * HtmlContainerControl.cs: some formatting and use HttpUtility.Encode
  48. instead of Page.Server to encode InnerText.
  49. 2002-06-04 Gonzalo Paniagua Javier <[email protected]>
  50. * HtmlAnchor.cs:
  51. (RenderAttributes): new -> override and fixed little bug that made
  52. it cause an stack overflow.
  53. * HtmlContainerControl.cs: reformatted and added tag and attributes
  54. rendering.
  55. * HtmlGenericControl.cs: removed TagName, which is already in
  56. HtmlControl.
  57. * HtmlTable.cs:
  58. (RenderEndTag): new -> override.
  59. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  60. * System.Web.UI.HtmlControls/HtmlForm.cs:
  61. (RenderAttributes): changed new by override.
  62. (Name): allow setting the property.
  63. 2002-05-10 Duncan Mak <[email protected]>
  64. * HtmlTableCellCollection.cs (this): Updated the indexer to return
  65. the right type, HtmlTableCell instead of HtmlTableRow.
  66. * HtmlInputImage.cs (OnServerClick): Commented out parts that
  67. won't compile.
  68. * HtmlForm.cs (RenderAttributes):
  69. (RenderChildren): Commented out code that doesn't compile.
  70. 2002-05-07 Duncan Mak <[email protected]>
  71. * HtmlSelect.cs (TrackViewState): Added 'new' keyword to avoid
  72. clashing with the method defined in the parent class.
  73. (OnDataBinding): Added missing casts.
  74. * HtmlForm.cs (Render): Fixed call too SetAttribute, need to cast
  75. 'this' to IAttributeAccessor before calling interface method.
  76. Also renamed some calls to reflect changes in the API.
  77. * HtmlControl.cs (WriteOnClickAttribute): Made it not static and
  78. fixed a typo.
  79. 2001-09-03 Leen Toelen <[email protected]>
  80. * HtmlAnchor.cs: Initial implementation.
  81. * HtmlTextArea.cs: Initial implementation.
  82. 2001-08-22 Bob Smith <[email protected]>
  83. * HtmlContainerControl.cs: Initial implementation.
  84. * HtmlControl.cs: Initial implementation.
  85. * HtmlGenericControl.cs: Initial implementation.