ChangeLog 3.2 KB

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