Browse Source

2001-11-30 Gaurav Vaish <[email protected]>

* CheckBox.cs   -- Huh! Completed another class. Looks to be at least. :))

* ChangeLog     -- Notified others

svn path=/trunk/mcs/; revision=1471
Gaurav Vaish 24 years ago
parent
commit
d8bd6b652d

+ 4 - 0
mcs/class/System.Web/System.Web.UI.WebControls/ChangeLog

@@ -1,4 +1,8 @@
 
+2001-11-30
+		Gaurav Vaish <[email protected]>
+	CheckBox.cs                - Completed
+
 2001-11-29
 		Gaurav Vaish <[email protected]>
 	CalendarDay.cs             - Making a note that this has been implemented

+ 1 - 2
mcs/class/System.Web/System.Web.UI.WebControls/CheckBox.cs

@@ -5,7 +5,7 @@
  * Author:  Gaurav Vaish
  * Maintainer: [email protected]
  * Contact: <[email protected]>, <[email protected]>
- * Status:  60%
+ * Status:  100%
  * 
  * (C) Gaurav Vaish (2001)
  * Thanks to Leen Toelen ([email protected])'s classes that helped me
@@ -149,7 +149,6 @@ namespace System.Web.UI.WebControls
 				writer.RenderBeginTag(HtmlTextWriterTag.Span);
 			if(Text.Length > 0)
 			{
-				// Looks wierd, ain't? But found out interestingly.
 				if(TextAlign == TextAlign.Right)
 				{
 					writer.AddAttribute(HtmlTextWriterAttribute.For, ClientID);