Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2002-06-05 19:58:32 +0400
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2002-06-05 19:58:32 +0400
commit62aeab6dc17ed33644f8da189b788c2339648f4e (patch)
treea40651d92c5bc9a05863363b71e21edd87634584 /mcs/class/System.Web/System.Web.UI.HtmlControls/ChangeLog
parenta6e91ebb095fc3eb19b6350972bf5361353dd18c (diff)
2002-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* System.Web.UI/AttributeCollection.cs: don't need a Hastable. StateBag now works fine and takes care of the details. * System.Web.UI/Control.cs: added HasChildren property. * System.Web.UI/StateBag.cs: fixed a couple of nasty bugs. * System.Web.UI.HtmlControls/HtmlButton.cs: RenderAttributes is an override, not new. * System.Web.UI.HtmlControls/HtmlContainerControl.cs: use the new Render method in HtmlControl. * System.Web.UI.HtmlControls/HtmlControl.cs: added Render method to render the tag and its attributes. Works for container and non-containers. * System.Web.UI.HtmlControls/HtmlImage.cs: RenderAttributes don't need to be new. Implemented Height property. svn path=/trunk/mcs/; revision=5130
Diffstat (limited to 'mcs/class/System.Web/System.Web.UI.HtmlControls/ChangeLog')
-rw-r--r--mcs/class/System.Web/System.Web.UI.HtmlControls/ChangeLog12
1 files changed, 12 insertions, 0 deletions
diff --git a/mcs/class/System.Web/System.Web.UI.HtmlControls/ChangeLog b/mcs/class/System.Web/System.Web.UI.HtmlControls/ChangeLog
index 465d0492174..d5a0b7868df 100644
--- a/mcs/class/System.Web/System.Web.UI.HtmlControls/ChangeLog
+++ b/mcs/class/System.Web/System.Web.UI.HtmlControls/ChangeLog
@@ -1,5 +1,17 @@
2002-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+ * HtmlButton.cs: RenderAttributes is an override, not new.
+
+ * HtmlContainerControl.cs: use the new Render method in HtmlControl.
+
+ * HtmlControl.cs: added Render method to render the tag and its
+ attributes. Works for container and non-containers.
+
+ * HtmlImage.cs: RenderAttributes don't need to be new. Implemented
+ Height property.
+
+2002-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
* HtmlContainerControl.cs: some formatting and use HttpUtility.Encode
instead of Page.Server to encode InnerText.