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

ChangeLog « System.Web.UI.WebControls « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cb282d6377ab71052048925d5ef270893759f356 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
2004-06-10 Alon Gazit <along@mainsoft.com>
        * WebControl.cs: fixed LoadViewState(). 
        Creates new attributes state bag only when the current is null.

2004-06-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Calendar.cs: implemented OnPreRender and HasWeekSelectors.

2004-06-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Calendar.cs: set the title class attribute if we have it. Fixes bug
	53671.

2004-06-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Style.cs: added SetBit.

2004-06-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Calendar.cs:
	* CompareValidator.cs:
	* ImageButton.cs:
	* Style.cs:
	* WebControl.cs: Added protected missing members and attributes.

2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* TextBox.cs: don't save the Text if in ViewState if it's a password.
	Save it if the control is not visible or not enabled. Fixes bug #58497.

2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Calendar.cs: fire OnDayRender after assigning the calendar cell text.
	Fixes bug #58097.

2004-05-09 Gert Driesen (drieseng@users.sourceforge.net)
	* Parameter.cs: 
	* SqlDataSourceCommandEventArgs:
	* XmlDataSource.cs : removed temporary workarounds for CLS 
	compliance as System.Data is now CLS compliant

2004-05-06 Alon Gazit <along@mainsoft.com>
        * WebControl.cs: fixed LoadViewState() and SaveViewState(). 
        Before the change the Enabled property wasn't updated when a postback
        event was raised.
        * ListControl.cs: fixed SelectedIndex property implementation.
        Prevents throwing ArgumentOutOfRangeException (that should not be thrown),
        when the list is empty.     

2004-04-28 Alon Gazit <along@mainsoft.com>
        * WebControl.cs: fixed LoadViewState(). 
        Always loading the saved attributes collection.

2004-04-18 Alon Gazit <along@mainsoft.com>
	* Repeater.cs: fixed InstantiateItem() and DataSource property.
	The change in DataSource prevents throwing ArgumentException while
	setting property value to null.
	The change in InstantiateItem() prevents NullReferenceException.

2004-04-07  Lluis Sanchez Gual <lluis@ximian.com>

	* BaseValidator.cs: Store Display property in the correct ViewState
	property. Don't render anything if Display is ValidatorDisplay.None.

2004-03-30  Lluis Sanchez Gual <lluis@ximian.com>

	* Xml.cs: In LoadXpathDoc(), don't use MapPathSecure with documentSource,
	  since it is already a physical path. Fixes bug #55334.

2004-02-13  Jackson Harper  <jackson@ximian.com>

	* Calendar.cs: Match MS postback data. This allows sites that
	parse the postback data manually to work.
	
2004-02-04 Alon Gazit <along@mainsoft.com>
	* EditCommandColumn.cs: fixed InitializeCell().
	The rendered LiteralControl should contain "&nbsp;" and not " ".

2004-02-01 Alon Gazit <along@mainsoft.com>

	* DataGrid.cs: fixed a problem in the paging mechanism in the method
	InitializePager().
	the problem was when (PagerStyle.Mode == PagerMode.NumericPages),
	while clicking the "..." link in the second page.

2004-01-28 Alon Gazit <along@mainsoft.com>

	* Calendar.cs: prevent NullReferenceException in RenderAllDays().

2004-01-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Calendar.cs: when rendering days, add a LiteralControl containing the
	day before OnDayRender is called. Only generate the default links for
	days when IsSelectable is true after OnDayRender. Fixes bug #53372.

2004-01-21  Martin Baulig  <martin@ximian.com>

	* XmlHierarchyData.cs: Make this compile with csc.

	* BulletedList.cs (BulletedList.SelectedItem): Removed the `set'
	accessor since the base class doesn't have one.

2004-01-18 Alon Gazit <along@mainsoft.com>

	* CheckBoxList.cs: fix problem with negative TabIndex (wasn't rendered).
	
2004-01-18 Alon Gazit <along@mainsoft.com>

	* Style.cs: CopyFrom method shouldn't copy a value that is equal to
	Property default value.
	* FontInfo.cs : CopyFrom method shouldn't copy a value that is equal to 
	Property default value.	

2004-01-15 Alon Gazit <along@mainsoft.com>

	* RadioButtonList.cs: RepeatLayout property should affect the rendered
	html.	

2004-01-15 Alon Gazit <along@mainsoft.com>
	* FontInfo.cs: Add validation check to Size property.	

2004-01-07 Alon Gazit <along@mainsoft.com>
	* DataGrid.cs: Fixed PrepareControlHierarchyForItem().
	merge the column's style to the cell's style and not to
	the item's(row) style.	

2004-01-04 Alon Gazit <along@mainsoft.com>
	* RangeValidator.cs: Fixed ControlPropertiesValid().
	
2004-01-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Xml.cs: mono-stylized and removed warnings.

2004-1-1 Alon Gazit <along@mainsoft.com>
	* RadioButtonList.cs: update RenderItem() so that each RadioButton
	is enabled or disabled like the RadioButtonList.
	* CheckBoxList.cs: update RenderItem() so that each CheckBox
	is enabled or disabled like the CheckBoxList. 	

2004-1-1 Alon Gazit <along@mainsoft.com>
	* DataGrid.cs: Fixed PrepareControlHierarchyForItem().
	The Header or Footer Style shouldn't merge with the cells Style.	  	 
	
2004-1-1 Alon Gazit <along@mainsoft.com>
	* DataGridColumn.cs: Headers and Footers are initialized  
	with the relevant Style object.	 

2003-12-30 Alon Gazit <along@mainsoft.com>
	* RepeatInfo.cs: Fixed DoVerticalRendering () and 
	DoHorizontalRendering().
	Current implementation produces few extra html tags.
	   
2003-12-29  Alon Gazit <along@mainsoft.com>

	* CheckBox.cs: change the implementation of LoadPostData. 
	Currently, while the AutoPostBack property equals true ,
	it isn't possible to perform uncheck.

2003-12-19  Jackson Harper <jackson@ximian.com>

	* TableCell.cs: Setting a cells text should clear its control
	collection as per la specification. This fixes bug #51825.
	
2003-12-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DataGridColumn.cs: stylized LoadViewState.
	* DataGridColumnCollection.cs: when TrackViewState is called, also
	call it on all the existing columns. Fixes bug #52334.

2003-12-18  Alon Gazit <along@mainsoft.com>

	* DataGridPagerStyle.cs: merge DataGridPagerStyle properties when Style 
	is empty.

2003-12-18  Alon Gazit <along@mainsoft.com>

	* TableStyle.cs: merge TableStyle properties when Style is empty.

2003-12-16  Alon Gazit <along@mainsoft.com>

	* HyperLink.cs: Change Text property implementation. in MS when the Text
	property is set, all the controls in the HyperLink are being deleted. 
	This fixes bug #52239.   

2003-12-15  Alon Gazit <along@mainsoft.com>
	* RepeatInfo.cs: Fixed DoVerticalRendering () and 
	DoHorizontalRendering().
	Both methods add additional empty table row in the head of each item
	table when the variable named isTable equals true (happenes with the
	default instantiation of RepeatInfo). These additional rows should be
	added when isTable equals false.
	This fixes bug #52225.   

2003-12-15  Alon Gazit <along@mainsoft.com>

	* RepeatInfo.cs: Fixed DoVerticalRendering() and
	DoHorizontalRendering().
	Both methods add to rendered Header a colspan attribute according to the
	rows count. after the change the colspan is added according to the
	columns count.   

2003-12-15  Alon Gazit <along@mainsoft.com>
	* CheckBox.cs: Disabled CheckBox does not produce same HTML as .NET.
	In .NET if the checkbox is disabled ,its text appears disabled too.
	In Mono the text appears enabled. the fix is in Render().
	This fixes bug #52180.

2003-12-15  Alon Gazit <along@mainsoft.com>
	* Repeater.cs: Change the implementation of CreateControlHierarchy().
	The current implementation renders extra Header and footer 
	without Repeater.DataSource assign. 
	This fixes bug #52179.

2003-12-15  Alon Gazit <along@mainsoft.com>
	* DataGrid.cs: Change the implementation of the property 
	BackImageUrl. The current implementation has no influence 
	on the rendered Html.

2003-12-15  Alon Gazit <along@mainsoft.com>
	* WebControl.cs: Change the implementation of the property 
	Enabled. Before the change the WebControl also looked at 
	parent.Enabled . fixed bug #52171.

2003-12-11  Jackson Harper <jackson@ximian.com>

	* RepeatInfo.cs: When rendering vertically figure out how many
	colmns are not going to be filled in in the last row, and adjust
	things accordingly. This fixes bug #51863.
	
2003-12-10  Alon Gazit <along@mainsoft.com>
	* TableRow.cs: Change the implementation of the properties 
	HorizontalAlign and  VerticalAlign. The current implementation      
	has no influence on the rendered Html.

2003-12-10  Alon Gazit <along@mainsoft.com>
	* TableItemStyle.cs: Add setting of The WRAP flag in the Wrap
	property's set method.
	
2003-12-09  Jackson Harper <jackson@ximian.com>

	* PagedDataSource.cs (PrivateICollectionEnumerator.MoveNext):
	Increment counter when moving to start. Fixes bug #51926.
	
2003-12-08  Jackson Harper <jackson@ximian.com>

	* HyperLinkColumn.cs: Fix navigate url rendering. Patch by
	Benjamin Jemlich. Fixes bug #51823.
	
2003-12-07  Alon Gazit <along@mainsoft.com>
	* Panel.cs: Panel doesn't render nowrap attribute while the Wrap
	property is set to false. Fixes bug #58120.
	
2003-12-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* TableItemStyle.cs: merge TableItemStyle properties when Style is
	empty. Fixes bug #51689. Patch by Alon Gazit <along@mainsoft.com>.

2003-12-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* RadioButtonList.cs: render tabindex attribute if needed. Fixes bug
	#51648.

2003-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* WebControl.cs: don't create the attributes when GetAttribute is
	called.

2003-12-01  Jackson Harper <jackson@ximian.com>

	* WebControl.cs: Only allow access keys to be null or a single
	char. Patch by Alon Gazit <along@mainsoft.com>.
	
2003-11-30  Jackson Harper <jackson@ximian.com>

	* CheckBoxList.cs: A checkbox will have null post data if it is
	unselected. This fixes bug #51516.
	
2003-11-29  Jackson Harper <jackson@ximian.com>

	* DataGrid.cs: Display paging controls even when there is no
	data. Path by Mohammad DAMT. Fixes bug #51487.
	
2003-11-29  Jackson Harper <jackson@ximian.com>

	* DataGrid.cs: Call TrackViewState when loading bound columns view
	state. So that their state is saved. This fixes bug #51424. Also
	set ReadOnly.
	
2003-11-26  Jackson Harper <jackson@ximian.com>

	* BaseDataList.cs: Change && to || We will call that a typo so no
	one gets embarrased.
	
2003-11-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* BaseDataList.cs: allow setting null as Datasource.

	* DataGrid.cs: keep autogenerated columns in the ViewState.

	Patches by Alon Gazit <along@mainsoft.com>.

2003-11-22 Ben Maurer  <bmaurer@users.sourceforge.net>

	* SqlDataSource*: Implement almost everything. Data access is
	still missing.

2003-11-22 Ben Maurer  <bmaurer@users.sourceforge.net>

	* Calendar.cs (SaveViewState):
	    - We were allocating a 11 item array, we only used 10 items,
	      so only allocate 10.
	    - We only need to save the selected dates if there are any.
	* DataGrid.cs (SaveViewState):
	* DataGridColumn.cs (SaveViewState):
	* DataGridColumnCollection.cs (SaveViewState):
	    - Only return the array if there is anything in it
	* Style.cs (SaveViewState):
	    - Only save the bits if there were changes.
	* WebControl.cs (SaveViewState), (LoadViewState):
	    - Don't save Enabled into the viewstate here, we already
	      do it in the property. This just caused *EVERY* control
	      to have a non-null state, taking up lots of extra room
	      in the ViewState.
	    - The style will always be created with this control's
	      viewstate, so the style will always return null for the
	      viewstate. As such, we do not need to store it. We can
	      also reduce the triplet to a pair because of this.

2003-11-22  Jackson Harper <jackson@ximian.com>

	* ValidationSummary.cs: Fix number of messages and message array computation.

2003-11-21  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* Xml.cs: Corrected attribute
	* XmlBuilder.cs: Added

2003-11-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Xml.cs: class status based fixes.

2003-11-19  Jackson Harper  <jackson@ximian.com>

	* HyperLink.cs: Use ResolveUrl instead of ResolveBaseUrl.
	
2003-11-19  Jackson Harper  <jackson@ximian.com>

	* HyperLink.cs: Use ResolveBaseUrl so that ~/ is interpreted as
	teh applications base directory. This fixes bug #51092.
	
2003-11-18  Todd Berman  <tberman@gentoo.org>

	* ControlParameter.cs:
	* CookieParameter.cs:
	* FormParameter.cs:
	* QueryStringParameter.cs:
	* SessionParameter.cs: added public .ctor ()
	* Parameter.cs: added public .ctor (), internal SetOwnerCollection
	and handling, as well as internal ParameterValue for easy access.
	NOTE: ParameterValue doesnt respect TreatEmptyStringAsNull yet.
	* ParameterCollection.cs: implementation redux.

2003-11-18  Todd Berman  <tberman@gentoo.org>

	* ParameterCollection.cs: Implemented
	* Parameter.cs: Added _owner, SetOwnerCollection and proper handling.
	ToString () now matches asp.net

2003-11-17 Ben Maurer  <bmaurer@users.sourceforge.net>

	* ControlParameter.cs:
	* CookieParameter.cs:
	* FormParameter.cs:
	* Parameter.cs:
	* QueryStringParameter.cs: New v2 files. Mostly
	implemented, still need a few methods.

2003-11-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* ListItem.cs: prevent nullrefs ni Get/SetAttribute. Thanks to Alon
	Gazit <along@mainsoft.com>.

2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* RadioButton.cs: fixed RenderInputTag for negative TabIndex values.
	Patch by Alon Gazit <along@mainsoft.com>.

2003-11-09 Ben Maurer  <bmaurer@users.sourceforge.net>

	* DataBoundControl.cs: Implement 
	* ListControl.cs: inherit from the above.
	* Repeater.cs, BaseDataList.cs: should reset whenever we databind.

2003-11-09 Ben Maurer  <bmaurer@users.sourceforge.net>

	* BaseDataList.cs:
	* DataGrid.cs:
	* DataList.cs:
	* Repeater.cs: add v2 databinding stuff
	* XmlDataSource.cs: make it load the xml.

2003-11-09 Ben Maurer  <bmaurer@users.sourceforge.net>

	* XmlDataSource.cs:
	* XmlDataSourceView.cs:
	* XmlHierarchicalDataSourceView.cs:
	* XmlHierarchicalEnumerable.cs:
	* XmlHierarchyData.cs: Implement

2003-11-08 Ben Maurer  <bmaurer@users.sourceforge.net>

	* SiteMapDataSourceView.cs: Implement.

2003-11-07 Jackson Harper <jackson@ximian.com>

	* ImageButton.cs: This is a workaround for bug #49819. It appears
	that the .x and .y values are not being posted, and only the x
	value is being posted with the ctrl's id as the key.
	
2003-11-07 Jackson Harper <jackson@ximian.com>

	* DataGrid.cs (CreateControlHierarchy): Current page index is
	alolowed to equal page count. This prevents an exception being
	thrown when both are zero.
	
2003-11-06 Jackson Harper <jackson@ximian.com>

	* ValidationSummary.cs: Add Render method. Patch by Yaron Shkop.
	* BaseValidator.cs: Disable base control so the isValid flag is
	not reset.
	
2003-11-03 Jackson Harper <jackson@ximian.com>

	* TemplateColumn.cs: Use the same renderer for selected items as
	normal items. This fixes bug #49744.
	
2003-11-03 Jackson Harper <jackson@ximian.com>

	* DataList.cs:
	* WebControl.cs: Fix argument out of range exceptions on
	properties. Patch by Yaron Shkop.
	
2003-11-03 Jackson Harper <jackson@ximian.com>

	* TemplateColumn.cs: If the item is selected but there is no
	editItemTemplate use the itemTemplate. This matches MS behvoir.
	
2003-11-03 Jackson Harper <jackson@ximian.com>

	* Repeater.cs: Always set alternating items to the AlternatingItem
	type, when instantiating alternating items use the itemTemplate if
	the alternatingItem template is null. This matches MS behavoir and
	fixes bug #50157.
	
2003-11-03 Jackson Harper <jackson@ximian.com>

	* DataGridPagerStyle.cs: Name of view state attribute is
	PagerVisible not Visible. Call owner.OnPagerChanged when the pager
	visibility is changed. Patch by Yaron Shkop.
	
2003-11-03 Jackson Harper <jackson@ximian.com>

	* RepeatInfo.cs: When doing horizontal rendering use the repeat
	columns as the number of columns in a row. This fixes bug #49016.
	
2003-11-03 Jackson Harper <jackson@ximian.com>

	* PagedDataSource.cs (PageCount): Return page count of 1 if there
	paging is disabled. Patch by Yaron Shkop.
	* PagedDataSource.cs (CopyTo): Improve. Patch by Yaron Shkop.
	* TableStyle.cs (AddAttributesToRender): Render border style
	collapse. Patch by Yaron Shkop.
	* TableStyle.cs:
	* TableItemStyle.cs:
	* DataGridPagerStyle.cs: Call base copy and merge even if style is of
	the wrong type. Patch by Yaron Shkop.	
	
2003-11-03 Jackson Harper <jackson@ximian.com>

	* BoundColumn.cs: Render readonly columns. Patch by Mohammad DAMT.
	
2003-11-02 Ben Maurer  <bmaurer@users.sourceforge.net>

	* BulletStyle.cs:
	* BulletedListDisplayMode.cs:
	* BulletedListEventHandler.cs:
	* BulletedList.cs:
	* BulletedListEventArgs.cs: V2 controls (yay!)

2003-10-30 Jackson Harper <jackson@ximian.com>

	* Repeater.cs: Throw an exception if the datasource is set to
	something that does not implement either IListSource or
	IEnumerable. This fixes bug #50155.
	
2003-10-30 Jackson Harper <jackson@ximian.com>

	* DataGridPagerStyle.cs: Do not allow page button counts to be set
	to less then 1. Patch by Yaron Shkop. This fixes bug #50236.
	
2003-10-29 Jackson Harper <jackson@ximian.com>

	* ButtonColumn.cs: Format string and text to format were
	inversed. This fixes bug #50171.
	
2003-10-29 Jackson Harper <jackson@ximian.com>

	* DataGridColumn.cs: If an item style is set apply it to the
	cell. This fixes bug #50173.
	
2003-10-29 Ben Maurer  <bmaurer@users.sourceforge.net>

	* HyperLinkColumn.cs: Patch by Yaron Shkop. Fixes #50234. Remove
	old debugging value.

2003-10-29 Jackson Harper <jackson@ximian.com>

	* PagedDataSource.cs:
	* DataGrid.cs: Patch by Mohammad DAMT. Do not go past the
	end of the last page. Fixes bug #5085.
	
2003-10-29 Jackson Harper <jackson@ximian.com>

	* CheckBox.cs: Do not change the status of a checkbox when there
	is no post data. This fixes bug #49091.
	* CheckBoxList.cs: Do not change the status of the checkboxes when
	there is no post data. This fixes bug #49093.
	
2003-10-26 Ben Maurer  <bmaurer@users.sourceforge.net>

	* RadioButton.cs: Patch by Yaron Shkop. Enables disabling a
	RadioButton. Fixes #50132

2003-10-25 Ben Maurer  <bmaurer@users.sourceforge.net>

	* PagedDataSource.cs: Patch by Ivo Haamer. Typo prevented
	paging from working. Fixes #48814.

2003-10-25 Ben Maurer  <bmaurer@users.sourceforge.net>

	* DataGrid.cs: A few typos kept us from viewing datagrids
	that were based on customized collections.

2003-10-24 Ben Maurer  <bmaurer@users.sourceforge.net>

	* DataGridCommandEventArgs.cs: typo, cmdSrc was becoming origionalArgs.

2003-10-23 Ben Maurer  <bmaurer@users.sourceforge.net>

	* Calendar.cs: render the next month button so that aligns to the
	right.

2003-10-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* BaseCompareValidator.cs: splitted Convert. Fixed bug #49927. The fix
	was just changing && by || after the first Match.

2003-10-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Calendar.cs: apply header style in RenderHeader. Fixes bug #49144.
	Patch by Yaron Shkop.

2003-10-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DataGrid.cs: applied patch from Yaron Shkop (yaronsh@mainsoft.com)
	that fixes bug #49744. Now the selection doesn't lose its data.

2003-10-21 Ben Maurer  <bmaurer@users.sourceforge.net>

	* EditCommandColumn.cs: Implement; fix #49736

2003-10-21 Ben Maurer  <bmaurer@users.sourceforge.net>

	* ButtonColumn.cs: Use the DataGridLinkButton, so that we inherit
	the forground color. bug #49738

2003-10-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Calendar.cs: fixed bug #49727.

2003-10-18 Ben Maurer  <bmaurer@users.sourceforge.net>

	* TableStyle.cs: fix #49740.

2003-10-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* SelectedDatesCollection.cs: fix by Yaron for bug #49698.
	* ValidationSummary.cs: fixes bug #49669.

2003-10-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Calendar.cs: apply the calendar style to the new Table, not to itself.
	Fixes #49406.

	* CheckBox.cs: render the hidden fields if AutoPostBack.

	* Style.cs: don't render empty width/height. Small improvement in
	CopyFrom.

	* Table.cs: fixed condition for border width.

	* TableStyle.cs:
	(CopyFrom): always call the base class to copy other attributes. Fixes
	bug #49408. Don't render empty 'rules' attribute.

	* WebControl.cs: track viewstate when enabled. Don't overwrite source
	control attributes in CopyBaseAttributes.

	* ChangeLog: fixed dates.


2003-10-08  Gaurav Vaish <gvaish_mono AT lycos.com>

	* WebControl.cs         : Attributes { get; }       - Is Complete.
	* ValidationSummary.cs  : AddAttributesToRender(HtmlTextWriter)
	                                                    - Completed.

2003-10-08  Gaurav Vaish <gvaish_mono AT lycos.com>

	* BaseValidator.cs      : DetermineRenderUplevel()  - Completed.
	                        : RegisterValidatorCommonScript()
	                                       - More code, I need HELP!
	                        : RegisterValidatorDeclaration()
	                                       - More code, I need HELP!

2003-09-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* CheckBoxList.cs: don't lose state when enabling/disabling. See bug
	#48802.

2003-09-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Repeater.cs: fixed bug #48807. It needed to use a DummyDataSource and 
	ClearViewState only called when no items.

2003-09-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* RadioButtonList.cs: fix for bug #48874 by Yaron Shkop.

2003-09-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* RadioButtonList.cs: fix for bug #48870 by Yaron Shkop.

2003-09-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DataList.cs: fixed bug #48217. Patch by yaronsh@mainsoft.com (Yaron
	Shkop).

2003-09-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AdRotator.cs: fixes bug #48691. Patch by yaronsh@mainsoft.com (Yaron
	Shkop).

2003-09-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* CheckBox.cs: render the 'disabled' attribute in the correct tag.
	* WebControl.cs: fixed Enabled property and save it in ViewState.

	Fixes bug #48802.

2003-09-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* ListControl.cs: fixed bug #48668. Thanks to Yaron Shkop.

2003-09-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* ListBox.cs: patch by yaronsh@mainsoft.com (Yaron Shkop) that fixes
	bug #48671.

2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
                                                                                
        * FontInfo.cs: fixed Name property as suggested by Rich Alimi
	<rich@velvetsea.net>.

2003-09-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* RegularExpressionValidator.cs: fix for EvaluateIsValid by Juraj
	Skripsky <juraj@hotfeet.ch>

2003-09-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* BaseValidator.cs: patch by Juraj Skripsky (juraj@hotfeet.ch) that
	fixes rendering of the end tag.

2003-08-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Repeater.cs: fix for Items property provided by yaronsh@mainsoft.com
	(Yaron Shkop). Closes bug #48060.

2003-08-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* CheckBox.cs: in LoadPostData, only return
	true when the new data is different from the one we had. Fixed
	conditions to save Checked state. Thanks to yaronshkop@hotmail.com
	(Yaron Shkop).

2003-08-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Style.cs: Font.Strikeout renders as 'line-through'. Fixes bug #47871.

2003-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* WebControl.cs: removed dangling ^M and unneeded fields. Keep track
	of Enable in ViewState. Fixes bug #47865.

2003-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Style.cs: the MARKED bit is not send set in ViewState unless something
	is changed. Fixed TrackViewState condition.
	
	* WebControl.cs: save the base ViewState *after* ControlStyle is done,
	because it uses the same ViewState as the control. Fixes bug #47725.

2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* HyperLinkColumn.cs: patch from David Pickens <dsp@rci.rutgers.edu>
	that fixes databinding when only DataTextField or DataNavigateUrlField
	is set.

2003-08-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* ListControl.cs: patch sent by Yaacov Akiba Slama <ya@slamail.org> on
	behalf of Yaron Shkop <yaronsh@mainsoft.com> that fixes selection of
	values before assigning a data source and other issues.

2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* CheckBox.cs: save viewstate when needed and correctly handle post
	data. Fixes bug #47462.

2003-08-01  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* ButtonColumn.cs: Removed additional attributes
	* CheckBox.cs: Added attribute
	* DataGrid.cs: Added attributes
	* HyperLinkColumn.cs: Changed attributes, added lamespec
	* Style.cs: Removed attributes
	* TextBox.cs: Added/ removed attributes

2003-08-01  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* AdRotator.cs: Added all attributes
	* BaseDataList.cs: Added all attributes, added lamespec, removed additional attributes
	* BaseValidator.cs: Added all attributes
	* BoundColumn.cs: Added all attributes
	* Button.cs: Added all attributes
	* ButtonColumn.cs: Added all attributes, added lamespec
	* Calendar.cs: Added all attributes, added error checks, throws more exceptions
	* CheckBox.cs: Added all attributes
	* CheckBoxList.cs: Added all attributes
	* CompareValidator.cs: Added all attributes
	* CustomValidator.cs: Added all attributes
	* DataGrid.cs: Added all attributes, more verbose exceptions, fixed signature, removed additional attributes
	* DataGridColumn.cs: Added all attributes
	* DataGridColumnCollection.cs: Added all attributes
	* DataGridPagerStyle.cs: Added all attributes
	* DataGridTableInternal.cs: Made DataGridTableInternal internal
	* DataList.cs: Added all attributes, more verbose exceptions, removed non-existing member
	* DropDownList.cs: Added all attributes
	* FontInfo.cs: Added all attributes
	* HyperLink.cs: Added all attributes
	* HyperLinkColumn.cs: Added all attributes
	* Image.cs: Added all attributes
	* ImageButton.cs: Added all attributes
	* Label.cs: Added all attributes
	* LinkButton.cs: Added all attributes
	* ListBox.cs: Added all attributes, added error checks, throws more exceptions
	* ListControl.cs: Added all attributes
	* ListItem.cs: Added all attributes
	* ListItemCollection.cs: Added attribute
	* Literal.cs: Added all attributes
	* Panel.cs: Added all attributes
	* RadioButton.cs: Added all attributes
	* RadioButtonList.cs: Added all attributes, added error checks, throws more exceptions
	* RangeValidator.cs: Added all attributes
	* RegularExpressionValidator.cs: Added all attributes
	* Repeater.cs: Added all attributes

2003-07-30  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* RequiredFieldValidator.cs: Added all attributes
	* Style.cs: Added all attributes
	* Table.cs: Added all attributes
	* TableCell.cs: Added all attributes, added error checks, throws more exceptions
	* TableCellCollection.cs: Added attribute
	* TableRow.cs: Added all attributes
	* TableRowCollection: Added attribute
	* TableStyle.cs: Added all attributes, improved error messages
	* TemplateColumn.cs: Added all attributes
	* TextBox.cs: Added all attributes, added error checks, throws more exceptions
	* ValidationSummary.cs: Added all attributes
	* WebControl.cs: Added all attributes
	* Xml.cs: Added all attributes

2003-07-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DataGrid.cs: fixed signature of ItemCreated and PageIndexChanged.
	* DataList.cs: fixed signature of ItemCreated and ItemDataBound.

2003-07-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* CheckBoxList.cs: fixes bug reported on the list about the state of
	the CheckButtons not being preserved across posts.

2003-07-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* ListControl.cs: added SelectedValue property (1.1). Closes 46412.

2003-06-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AdRotator.cs: fixed bug #44271 and a few others bugs. Mono-stylized.

2003-06-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* ListControl.cs: save viewstate data when any of the 3 values is not
	null. Fixed condition to save selection indices. Closes bug #45493.

2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DataGrid.cs: fixed bug #43823.

2003-05-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DataGrid.cs: fixed delegate type for SortCommand.

2003-05-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DataGridColumnCollection.cs: added missing return in RemoveAt.

2003-05-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DataGridColumnCollection.cs: fixed LoadViewState for the columns.
	Don't save ViewState is the number of columns is 0.

2003-05-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DataGrid.cs: get the right item Type for the property we're reading
	fromt the data source.

2003-04-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Label.cs:
	* TextBox.cs: added control builder attribute.

2003-03-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DataGrid.cs: Fixed SaveViewState and type of ItemDataBound.

2003-03-17  George Kodinov <gkodinov@openlinksw.co.uk>
        
        * Unit.cs: Called the correct method to get the Numeric locale for the
	double conversion

2003-02-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* ButtonColumn.cs: fixed a couple of infinite loop problems and render
	correctly the header of the column.

	* DataGridTableInternal.cs: don't assign a default ID to this control.

	* LinkButton.cs: raise bubble event in OnCommand.

	* TableCellCollection.cs: fixed the index returned by Add.

	* TableRowCollection.cs: ditto.

2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Xml.cs: don't call MapPathSecure when setting DocumentSource.

2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* RangeValidator.cs: fixed bug #37577. Thanks to Stephane Tombeur
	for reporting the bug and providing the fix.

2003-01-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DataGrid.cs: AutoGenerateColumns defaults to true. Fixed
	CreateColumnSet. Set the owner of the column when auto generated.
	In PrepareControlHierarchyForItem, fixed for loop bound.

	* LinkButtonInternal.cs: fixed infinite recursion bug.

	Fixes bug #37124.

2003-01-22  Zdravko Tashev <ztashev@openlinksw.co.uk>

	* Xml.cs: a few fixes.

2003-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DataList.cs: handle the exception when adding new keys to
	DataKeysArray.

2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* BaseDataList.cs: what can I say for this one? I spent so many time
	until I finally found this that I'm gonna miss this f....g bug... ;-).
	Farewell. Now we can get events from image buttons inside Data*.

	* DataList.cs: now the value stored in ViewState for item count is
	correct.

2003-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DataGrid.cs: default value for ShowHeaders is true. Fixed style for
	Header and Footer.
	* DataGridColumn.cs: added SetOwner method.
	* DataGridColumnCollection.cs: set the owner of the column when added.

2003-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* BoundColumn.cs: typo.
	* DataGrid.cs: use 'as' instead of casting. Typo.
	* HyperLinkColumn.cs: call OnColumnChanged when any property change.
	Mono-stylized.

2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* HyperLink.cs: fixes bug #36336.

2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DataList.cs: fixed IRepeatInfoUser.GetItemStyle.

2002-12-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* BaseValidator.cs: return an empty string in GetControlValidationValue
	when GetValue returned null.

	* CompareValidator.cs: fixed EvaluateIsValid.

	* RegularExpressionValidator.cs: fixed EvaluateIsValid.

2002-12-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Xml.cs: use MapPathSecure to get the path of the document.

2002-12-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DataList.cs: fixed header & footer.

2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DataList.cs: for header and footer don't use data source.
	Instantiate in the DataListItem, not in the DataList.
	databind-template.aspx works now.

2002-11-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* BaseDataList.cs:
	(Render): call RenderContents (), not base.RenderContents ().

	* DataList.cs: style.

	But I still haven't found what i'm looking for....

2002-11-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Calendar.cs: fixed loading/saving selected dates.
	* SelectedDatesCollection.cs: added internal function to get the
	underlying ArrayList.

	Calendar navigation works again. Selecting dates too.

2002-11-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DataList.cs: added a few attributes and fixed infinite recursion.

2002-11-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* ListItemCollection.cs: fixed LoadViewState.

2002-11-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* TableItemStyle.cs: TypeDescriptor.GetConverter seems to fail.
	Commented out some code until it works.

2002-10-29      Gaurav Vaish <gvaish_mono@lycos.com>

	* BaseCompareValidator.cs - Fixed operator bug in 
	                            Compare(string, string, ...)
	* CompareValidator.cs     - EvaluateIsValid()            : Implemented.

2002-10-28      Gaurav Vaish <gvaish_mono@lycos.com>

	* BoundColumn.cs        - InitializeCell(TableCell, int, ListItemType)
	                                              : Implemented.
	                        - All Properties      : Now make use of ViewState.

2002-10-28      Gaurav Vaish <gvaish_mono@lycos.com>

	* BaseValidator.cs      - Uncomment NotImplementedException.

2002-10-28      Gaurav Vaish <gvaish_mono@lycos.com>

	* BaseValidator.cs      - Minor changes in TODO comments.

2002-10-28      Gaurav Vaish <gvaish_mono@lycos.com>

	* BaseValidator.cs      - DetermineRenderUpLevel()       : Uncomment
	                          the NotImplementedException being thrown.
	* DataGridPagerStyle.cs - Mode { set; }                  : Implemented.
	* DataGridLinkButton.cs - Added new class (private)      : Implemented.
	* DataGrid.cs           - InitializePager(DataGridItem, int,
	                          PagedDataSource)               : Implemented.

2002-10-28      Gaurav Vaish <gvaish_mono@lycos.com>

	* DataList.cs          - PrepareControlHierarchy()       : Implemented.

2002-10-28      Gaurav Vaish <gvaish_mono@lycos.com>

	* DataList.cs          - RenderContents(HtmlTextWriter)  : Implemented.
	                       - GetItem(ListItemType, int)      : Removed TODO.
	                       - CreateControlHierarchy(bool)    : Implemented.
	                       - CreateItem(int, ListItemType)   : Implemented.
	                       - CreateItem(int, ListItemType,
	                               bool, object)             : Implemented.
	                       - InitializeItem(DataItem)        : Implemented.
	* DataGrid.cs          - CreateControlHierarchy(bool)    : Bug fix.
	                    The ViewState["_!ItemCount"],
	                        ViewState["_!DataSource_ItemCount"]
	                          are shared by DataList and DataGrid, and hence
	                          should share the same name.
	                       - ResolveDataSource(object, string)
	                             : Removed. Use System.Web.UI.Utils.DataSourceHelper
	                               ::GetResolvedDataSource(object, string).


2002-09-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DataGrid.cs: fixed compilation

2002-09-12      Gaurav Vaish <gvaish_mono@lycos.com>

	* PagedDataSource.cs   - FirstIndexInPage : Fixed bug.
	* DataGrid.cs          - CreateControlHierarchy(bool)
	                            : working towards completion.
	                       - ResolveDataSource(object, string)
	                            : stubbed new method
	                       - CreateItem(....)
	                            : stubbed new method
	                Well. It's almost done.
	* DataGridTableInternal.cs
	                       - Added new internal class.

2002-08-28      Gaurav Vaish <gvaish_mono@lycos.com>

	* DataSourceInternal.cs       - Added new class (internal).

2002-08-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* FontUnit.cs:
	* HorizontalAlign.cs:
	* Unit.cs:
	* VerticalAlign.cs: fixes based on class status page.
	
	* HorizontalAlignConverter.cs: implemented.
	* VerticalAlignConverter.cs: implemented.

	* FontUnitConverter.cs: implemented GetStandardValues ().

	* WebColorConverter.cs: implemented ConvertFrom () and ConvertTo ().

2002-08-19      Gaurav Vaish <gvaish_mono@lycos.com>

	* DataGrid.cs                 - AutoCreateColumns: Bug fixes.

2002-08-19      Gaurav Vaish <gvaish_mono@lycos.com>

	* DataGrid.cs                 - AutoCreateColumns: completed, hopefully!

2002-08-19      Gaurav Vaish <gvaish_mono@lycos.com>

	* DataGrid.cs                 - Working on the undocumented protected
	                      method CreateColumnSet. AutoCreateColumns method
	                      stubbed. Left CreateControlHierarchy for the time
	                      being, looks like I'm going insane. ;-)

2002-08-19      Gaurav Vaish <gvaish_mono@lycos.com>

	* Button.cs                   - Steffen's OnCommand bug fix.

2002-08-12      Gaurav Vaish <gvaish_mono@lycos.com>

	* DataGrid.cs                 - Added protected method (skeleton)
	                                CreateColumnSet(PagedDataSource, bool)
	                              Still trying to know how will it be used
	                              and what for...

2002-08-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* PagedDataSource.cs: fixed compilation.

2002-08-08      Gaurav Vaish <gvaish_mono@lycos.com>

	* DataGrid.cs                 - Added private method
	                                CreatePagedDataSource
	                              - Started work on
	                                CreateControlHierarchy(bool)
	* PagedDataSource.cs          - Bug fixed.
	                                CurrentPageIndex is writable.

2002-08-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DataGrid.cs: fixed typo.
	* DataGridPagerStyle.cs: added IsPagerOnTop and IsPagerOnBottom.

2002-08-06      Gaurav Vaish <gvaish_mono@lycos.com>

	* DataGridColumn.cs           - Added internal methods to get the
	                                various styles (needed in DataGrid.cs)
	* DataGrid.cs                 - Completed the method
	                                PrepareControlHierarchy()

2002-08-06      Gaurav Vaish <gvaish_mono@lycos.com>

	* DataGrid.cs                 - Wokring on PrepareControlHierarchy()
	                              - Added private method
	                     PrepareControlHierarchyForItem()

2002-08-05      Gaurav Vaish <gvaish_mono@lycos.com>

	* DataGrid.cs                 - Completed method
	                     OnBubbleEvent(object, EventArgs)

2002-07-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Xml.cs: implemented document/transform load.

2002-07-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Calendar.cs: added myself to the list of authors.
	* DropDownList.cs: fixed a few properties.
	* ListControl.cs: fixed SelectedIndex.

2002-07-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Calendar.cs: lots of fixes. Render days.  Still left to persist
	selected days when changing month.

	* Unit.cs: fixed Percentage and Pixel.

	* WebControl.cs: a few properties are now using ControlStyle instead
	of ViewState to persist.

2002-07-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* BaseValidator.cs: it works now.
	* DataGridColumn.cs: added attribute and made it abstract.
	* RequiredFieldValidator.cs: fixed return value in EvaluateIsValid.

2002-07-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* TextBox.cs: default for Wrap is true.
	(OnPreRender): don't save Text if there are no listeners on TextChanged.

2002-07-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DropDownList.cs:
	(ToolTip): fixed.

	* ListItem.cs:
	(LoadViewState): fixed.

	* ListItemCollection.cs:
	(TrackViewState): use items instead of 'this' in foreach.

	* Style.cs:
	(LoadViewState): more checking of parameters.

	* WebControl.cs: implemented LoadViewState and SaveViewState.
	

2002-07-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* ListItem.cs: there was no code to unset the flags!!!

2002-07-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* FontUnit.cs: use a hashtable for mapping size name to value.
	* HyperLink.cs: fixed a bug and a typo.
	* Unit.cs: some fixes to internal constructor.

2002-07-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* ListControl.cs: fixed a couple of range checks.
	* WebControl.cs: MS lies! Not all WebControls must be rendered inside
	an HtmlForm (p.e., Label).

2002-07-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AdRotator.cs:
	* Button.cs:
	* Calendar.cs:
	* CheckBox.cs:
	* CheckBoxList.cs:
	* DataList.cs:
	* DropDownList.cs:
	* HyperLink.cs:
	* HyperLinkColumn.cs:
	* Image.cs:
	* ImageButton.cs:
	* Label.cs:
	* LinkButton.cs:
	* ListBox.cs:
	* Panel.cs:
	* PlaceHolder.cs:
	* RadioButton.cs:
	* RadioButtonList.cs:
	* Table.cs:
	* TableRow.cs:
	* TextBox.cs:
	* WebControl.cs: removed attributes added by mistake (i used
	GetCustomAttributes (true), d'oh!).

	* DataListItem.cs: implemented RenderItem.

	* Repeater.cs: implemented CreateItem and InitializeItem.

2002-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* BaseDataList.cs: a couple of fiex and added attributes.
	* DataGrid.cs: little fixes.

2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* CheckBoxList.cs:
	* DataGrid.cs:
	* DataList.cs:
	* DropDownList.cs:
	* ListBox.cs:
	* PlaceHolder.cs:
	* RadioButton.cs:
	* RadioButtonList.cs:
	* TableRow.cs:
	* WebControl.cs:
	* Xml.cs: forgot to add using System.ComponentModel.

	* BaseValidator.cs: use explicitly 
	System.ComponentModel.AttributeCollection as there is another class
	with the same name under System.Web.UI.

2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AdRotator.cs:
	* Button.cs:
	* Calendar.cs:
	* CheckBox.cs:
	* CheckBoxList.cs:
	* DataGrid.cs:
	* DataList.cs:
	* DropDownList.cs:
	* HyperLink.cs:
	* Image.cs:
	* ImageButton.cs:
	* Label.cs:
	* LinkButton.cs:
	* ListBox.cs:
	* Panel.cs:
	* PlaceHolder.cs:
	* RadioButton.cs:
	* RadioButtonList.cs:
	* Table.cs:
	* TableRow.cs:
	* TextBox.cs:
	* WebControl.cs:
	* Xml.cs: added/fixed all attributes used by xsp.

	* BaseValidator.cs: some fixes.

2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Table.cs:
	(AddAttributesToRender): correctly default to border=1.

2002-07-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AdRotator.cs:
	(LoadAdFile): make the dictionary null after every iteration.

	* LinkButton.cs:
	* ListControl.cs:
	* ListItem.cs: fixed warnings.

Mon Jul 1 16:23:15 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* Style.cs, TableRow.cs, DataListItem.cs: fix compilation.

2002-06-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DataGridColumn.cs:
	* DataGridPagerStyle.cs:
	* DataList.cs:
	* DataListItem.cs:
	* Image.cs:
	* LinkButton.cs:
	* ListControl.cs:
	* ListItem.cs:
	* ListItemCollection.cs:
	* Repeater.cs:
	* ServerValidateEventArgs.cs:
	* Style.cs:
	* TableRow.cs:
	* WebControl.cs:
	* Xml.cs: more class status page based changes.

2002-06-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Button.cs:
	(.ctor): fixed to render the correct tag.
	(IPostBAckEventHandler.RaisePostBackEvent): fixed.

2002-06-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* WebControl.cs:
	(AddAttributesToRender): call Page.VerifyRenderingInServerForm. All
	WebControl derived classes should be rendered inside a HtmlForm.

2002-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Repeater.cs: implemented CreateControlHierarchy. Fixed some event
	processing methods.

2002-06-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* RadioButtonList.cs: implemented IRepeatInfoUser.RenderItem.
	* RepeatInfo.cs: implemented DoHorizontalRendering.

2002-06-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* System.Web.UI.WebControls/Repeater.cs:
	(Controls):
	(OnDataBinding): fixed stack overflow.

2002-06-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* RadioButtonList.cs: implemented IRepeatInfoUser.RenderItem.
	* RepeatInfo.cs: implemented DoHorizontalRendering.

2002-06-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* WebControl.cs:
	(CopyBaseAttributes): copy Attributes and don't throw exception.

2002-06-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* ListBox.cs: mono-stylized.
	(AddAttributesToRender): call parent class method.

2002-06-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Style.cs: fixed IsEmpty and Width.

	* Table.cs: mono-stylized.
	(TableRowControlCollection.AddAt): fixed.
	(AddAttributesToRender): fixed.
	
	* TableCell.cs: mono-stylized.
	(.ctor): use PreventAutoID.
	(AddAttributesToRender): fixed.
	(AddParsedSubObject): fixed.

	* TableRow.cs: mono-stylized. Added
	ParseChildren attribute.

	* TableStyle.cs:
	(get_GridLine): fixed.

2002-06-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Panel.cs: fixed stack overflow.
	* Unit.cs: use Int32.Parse and Single.Parse instead of Int32Converter
	and SingleConverter.

2002-06-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* RadioButton.cs: mono-stylized and some little fixes.

	* TextBox.cs: mono-stylized.
	(MaxLength): fixed typo.

	(AddAttributesToRender): don't render the text between the tags for
	SingleLine, use value attribute for it. Don't render the text for
	Password.

	(OnPreRender): don't throw exception and call base.OnPreRender.

	(Render): for MultiLine, render the text between the opening and
	closing tags encoded as HTML.

2002-06-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* ImageButton.cs:
	(AddAttributesToRender): fixer another stack overflow.

	* WebControl.cs:
	(TagName): modified to use TagKey instead of tagKey as the property
	can be overriden.

2002-06-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* LinkButton.cs: mono-stylized.
	(AddParsedSubObject):
	(RenderControls): little fixes.

	* WebControl.cs:
	(AddAttributesToRender): fixed usage of IEnumerator.

2002-06-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Literal.cs: beautified.

2002-06-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Label.cs: beautified and fixed a couple of 'classic' bugs.

	* WebControl.cs: use Span as default tag when no other provided in 
	constructor. That is what MS renders.

2002-06-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Button.cs:
	(AddAttributesToRender): fixed (classic) stack overflow.

	* CheckBox.cs: mono-stylized.
	(AutoPostBack): fixed stack overflow.
	(Render): fixed alignment issues. Also set the For attribute always
	for the label.

2002-06-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AdRotator.cs: GetData does not work as it should, but now it returns
	useful data (only the first ad in the file).  Set the NavigateUrl
	property in the hyperlink if available.

	* HyperLink.cs: fixed constructor and a couple of stack overflows.

	* Image.cs: added an attribute and fixed stack overflow.

	* WebControl.cs:
	(RenderBeginTag): fixed.
	(TagName): don't call Enum.IsDefined twice.

2002-06-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* WebControl.cs: added attributes PersistChildrenAttribute and 
	ParseChildrenAttribute.

2002-05-24  Duncan Mak  <duncan@ximian.com>

	* DataGridItem.cs (SetItemType): Changed function signature to
	match 1.0 spec.

	* ListItemCollection.cs (this): Changes the visibility level of
	the indexer.

	* Repeater.cs (OnItemCommand):
	(OnItemCreated):
	(OnItemDataBound): Added necessary casts.

2002-05-07  Duncan Mak  <duncan@ximian.com>

	* Button.cs (AddAttributesToRender): 
	* ImageButton.cs (AddAttributesToRender): Added a missing argument to the
	GetClientValidatedEvent method.

2002-03-27      Gaurav Vaish <gvaish@iitk.ac.in>

	* Removed extra methods, corrected access modifiers to several
	  methods.

2002-03-26      Gaurav Vaish <gvaish@iitk.ac.in>

	* <SeveralFiles>.cs        - Added some attributes
	* FontUnitConverter.cs     - Added stubs for GetStandardValues*(..)
	    methods. Will complete them later. Right now, busy with
	    the attributes part.
	* RepeaterItem.cs          - Completed.
	
	 Oh God! Mercy! I will die applying attributes. I look at the missing
	  part in the class-status - daemon! Kyrie eleison!

2002-03-19      Gaurav Vaish <gvaish@iitk.ac.in>

	   Some bug fixes

	* AdRotator.cs             - Added definition for Font.
	* BaseCompareValidator.cs  - Added definition for Controls.
	* Calendar.cs              - SelectMonthText definition corrected.
	* DataList.cs              - Added definition for SeparatorTemplate.
	* BorderStyle.cs           - Namespace correction. It belongs not to UI,
	                             but to UI.WebControls.

2002-03-17      Gaurav Vaish <gvaish@iitk.ac.in>

	Finally, I have made it. Today I did a second build for the
	 System.Web assembly. It compiled 195 classes today.
	I am waiting eagerly for the runtime to come up so that the objects
	 may be tested to their last levels. Several of the methods are still
	 under the tag of "TODO" throwing NotImplementedException. Well, I
	 hope to remove them soon, but how far is this soon - even I don't
	 know, though I am happy to make the build a success even before
	 the vacations to come.

2002-03-07      Gaurav Vaish <gvaish@iitk.ac.in>

	Yesterday and today I tried to do some building of the aseembly,
	 but was dumped with uncoutably infinite errors. ;-)
	I have put the copies of the recent errors on my home page, want
	 to have a look at them? See:
	  http://mastergaurav.virtualave.net/mono/
	I don't know what to do with these errors. Oh! The buggy me! How
	 will I overcome myself. Hopefully, by when my vacations over, I
	 should have made a repository where the build will not fail.

2002-03-05      Gaurav Vaish <gvaish@iitk.ac.in>

	I am now going to do a build that will include the
	 System.Web.UI.WebControls namespace. Hoping that I will make it
	 soon. My exams are coming near and I have to pack up soon.


2002-03-04      Gaurav Vaish <gvaish@iitk.ac.in>

Comments:
	And with this, ie, today's work, all the objects mentioned in the
	namespace appear in the implementation. But it may not be worth
	trying to go for a build because of dependence of several of the
	internal methods that may clash with already available assembly
	System.Web.
	
	Also, the classes lack possible attributes, like those informing
	about child-controls etc. But I have to first create the attribute
	classes before I attach the attributes to the classes.

	* CustomValidator.cs          - Completed. In process realized that
	             I have to complete / rejuvinate BaseValidator class.
	* BaseValidator.cs            - Complete rejuvination. Completed 80%
	            of the job. All that is left is Render(HtmlTextWriter),
	            DetermineRenderUplevel(), RegisterValidatorCommonScript()
	            RegisterValidatorDeclaration()
	* DataGridPagerStyle.cs       - Completed. That adds one more missle
	            in my artillery.
	* DataKeyCollection.cs        - Completed. Petty small.
	* Repeater.cs                 - Work started off. This is a quite
	            heavy class. Hooh!
	* DataGridItemEventArgs.cs,
	* DataGridShortCommandEventArgs.cs,
	* DataListItemEventArgs.cs,
	* MonthChangedEventArgs.cs,
	* RepeaterItemEventArgs.cs,
	* ServerValidateEventArgs.cs,
	* DataGridPageChangedEventArgs.cs
	                              - Damn, I marked them "*", while they
	            did not exist.
	* Repeater.cs                 - Done all except for an undocumented
	            method CreateControlHierarchy(bool). Though the method
	            is quite clear by its name, but it will take some time
	            for me to come with some material to flush in.

2002-03-03      Gaurav Vaish <gvaish@iitk.ac.in>

	* SelectedDatesCollection.cs  - Completed.
	* PagedDataSource.cs          - Completed. Pathetically nice class.
	* RegularExpressionValidator.cs
	                              - Completed. Ridiculously small and
	            annoyinglyc crazy-driving class, basically the method
	            EvaluateIsValid().
	* RangeValidator.cs           - Completed.
	* DataGridColumn.cs           - Completed.
	* EditCommandColumn.cs        - All is complete except for the
	            InitializeCell(TableCell, int, ListItemType) method.
	* DataListItem.cs             - All done except for a longish method
	            RenderItem(HtmlTextWriter, bool, bool)

2002-03-02      Gaurav Vaish <gvaish@iitk.ac.in>

	* RepeaterItemCollection.cs   - Completed.
	            I love *Collection classes. I am planning to make a
	            program that will generate a *Collection class. It's so
	            simple and the same. ;-)
	* DataGridColumnCollection.cs - Completed.
	            ... except probably for *ColumnCollection classes, where
	            you have to put in some more effort. Still, these class
	            generation can be automated.
	* DataListItemCollection.cs   - Completed.
	            See, how easily, in less than a quarter of a minute, I
	            completed this class - manually. Copy-Paste/Cut-Replace.

2002-02-21      Gaurav Vaish <gvaish@iitk.ac.in>

	* DataGrid.cs                 - Following methods implemented:
	            TrackViewState(), LoadViewState(object), SaveViewState(),
	            On* -- The event raisers.
	            OnBubbleEvent(object, EventArgs) is still incomplete.
	* DataGridItem.cs             - Initial Implementation
	* DataGridItemCollection.cs   - Completed.

2002-02-08      Gaurav Vaish <gvaish@iitk.ac.in>

	* DataGrid.cs                 - Initial Implementation. Worked
	            primarily with some properties.

2002-02-07      Gaurav Vaish <gvaish@iitk.ac.in>

	* ListBox.cs                  - Completed. Implemented
	           LoadPostData(string, NameValueCollection)
	* RequiredFieldValidator.cs   - Completed. Pretty simple class.

2002-02-06      Gaurav Vaish <gvaish@iitk.ac.in>

	* ListBox.cs                  - Implemented the following:
	           RaisePostDataChangedEvent()

2002-02-02      Gaurav Vaish <gvaish@iitk.ac.in>

	* ListBox.cs                  - Supports the following properties:
	           BorderColor, BorderStyle, BorderWidth, Rows, SelectionMode,
	           ToolTip.
	          Methods:
	           AddAttributesToRender(HtmlTextWriter), OnPreRender(EventArgs),
	           RenderContents(HtmlTextWriter)


2002-02-01      Gaurav Vaish <gvaish@iitk.ac.in>

	* TargetConverter.cs          - Completed
	* TemplateColumn.cs           - Completed
	* DataList.cs                 - Corrected the get-er methods for the
	         *Style objects. Corrected the get/set-er methods for ViewState
	           related objects.
	         Addded support for properties:
	           GridLines, HeaderStyle, HeaderTemplate, ItemStyle, ItemTemplate,
	           RepeatColumns, RepeatDirection, RepeatLayout, SelectedIndex,
	           SelectedItem, SelectedItemStyle, SelectedItemTemplate,
	           SeparatorStyle, SeparatorItemTemplate.
	         Events:
	           CancelCommand, DeleteCommand, EditCommand, ItemCommand,
	           ItemCreated, ItemDataBound, UpdateCommand.
	         Methods:
	           CreateControlStyle(), LoadViewState(object),
	           SaveViewState(), TrackViewState
	         Event handlers:
	           OnBubbleEvent, OnCancelCommand, OnDeleteCommand,
	           OnEditCommand, OnItemCommand, OnItemCreated,
	           OnItemDataBound, OnUpdateCommand
	         Added dummy methods for some undocumented methods:
	           CreateControlHierarchy(bool), CreateItem(int, ListItemType),
	           CreateItem(int, ListItemType, bool, object),
	           PrepareControlHierarchy(), InitializeItem(DataListItem)
	* ListBox.cs                  - Started working.



2002-01-31      Gaurav Vaish <gvaish@iitk.ac.in>

	* RepeaterInfo.cs             - Initial Implementation. Done all
	                                except for RepeatDirection.Vertical
	* TableStyle.cs               - Completed

2002-01-30      Gaurav Vaish <gvaish@iitk.ac.in>

	* DropDownList.cs             - Completed
	* ListItemCollection.cs       - Added method FindByValueInternal to
	                                assist in the derived classes.
	                                Discovered bug in FindByValue. Removed
	* UnitConverter.cs            - Completed
	* PlaceHolder.cs              - What can be simpler than this?
	* PlaceHolderControlBuilder.cs
	                              - Uh! Damn cool one.
	* RadioButtonList.cs          - Initial Implementation. All is done
	                                except for the implementation of
	                                method IRepeatInfoUser.RenderItem(...)
	* ValidatedControlConverter.cs
	  ^^^^^^^^^^^^^^^^^^^^^^^^^   - Looks complete. Doubtful though !!
	* ValidationSummary.cs        - Initial Implementation.
	* WebColorConverter.cs        - Initial Implementation

2002-01-27      Gaurav Vaish <gvaish@iitk.ac.in>

	* FontNamesConverter.cs       - Completed
	* FontUnitConverter.cs        - Partial Implementation
	* ListItemControlBuilder.cs   - Completed

2002-01-27      Gaurav Vaish <gvaish@iitk.ac.in>

	* TextBox.cs                  - All done except *Render* methods
	* TextBoxControlBuilder.cs    - Completed
	* Xml.cs                      - Partial Implementation

2002-01-26      Gaurav Vaish <gvaish@iitk.ac.in>

	* RadioButton.cs              - Completed
	* TextBox.cs                  - Partial Implementation

2002-01-25      Gaurav Vaish <gvaish@iitk.ac.in>

	* Panel.cs                    - Completed
	* TableItemStyle.cs           - Completed

2002-01-18      Gaurav Vaish <gvaish@iitk.ac.in>

	* TableCellCollection.cs      - Completed
	* TableRowCollection.cs       - Completed
	* TableHeaderCell.cs          - Completed
	* TableRow.cs                 - Completed

2002-01-09      Gaurav Vaish <gvaish@iitk.ac.in>

	* TableCellControlBuilder.cs  - Completed
	* Table.cs                    - Completed
	* TableCell.cs                - Completed

2002-01-07      Gaurav Vaish <gvaish@iitk.ac.in>

	* CheckBoxList.cs             - Completed
	* ButtonColumn.cs             - Completed
	* Button.cs                   - Completed

2001-12-28      Gaurav Vaish <gvaish@iitk.ac.in>

	* HyperLink.cs                - Completed
	* Image.cs                    - Completed
	* ImageButton.cs              - Completed
	* Label.cs                    - Completed
	* LabelControlBuilder.cs      - Completed
	* LinkButton.cs               - Completed
	* LinkButtonControlBuilder.cs - Completed
	* Literal.cs                  - Completed
	* LieteralControlBuilder.cs   - Completed
	* FontUnit.cs                 - Completed


2001-12-27      Gaurav Vaish <gvaish@iitk.ac.in>

	* Calendar.cs                 - Completed the functions of Render*,
	                                ViewStates (Track/View/Save),
	                                RaisePostBackEvent.
	                                Left: RenderAllDays (partially)

2001-12-21      Gaurav Vaish <gvaish@iitk.ac.in>

	* Calendar.cs                 - Added some more functions
	* Style.cs                    - Completed
	* ListItem.cs                 - Completed
	* ListItemCollection.cs       - Completed

  Made the first successful build of System.Web.dll that included
  System.Web.UI.WebControls!

2001-12-20	Gaurav Vaish <gvaish@iitk.ac.in>

	FontInfo.cs                 - Complete revamp. Completed

2001-12-19	Gaurav Vaish <gvaish@iitk.ac.in>

	ListItemCollection.cs       - Completed
	ListItem.cs                 - Initial Implementation
	Style.cs                    - Initial Implementation

  Right now I am in a total mood to do a successful build. Creating so many
  classes, completing classes in System.Web System.Web.UI namespaces.

2001-12-18	Gaurav Vaish <gvaish@iitk.ac.in>

	TODO                        - Properly added
	CheckBox.cs                 - Completed
	BaseDataList.cs             - Completed
	DayRenderEventArgs.cs       - Completed
	RepeaterItem.cs             - Initial implementation

2001-12-17	Gaurav Vaish <gvaish@iitk.ac.in>

	BaseCompareValidator.cs     - Completed
	AdRotator.cs                - Completed

2001-12-15	Gaurav Vaish <gvaish@iitk.ac.in>

	CommandEventArgs.cs         - Completed
	DataGridCommandEventArgs.cs - Completed
	RepeaterCommandEventArgs.cs - Completed
	DataListCommandEventArgs.cs - Completed
	CompareValidator.cs         - Partial Implementation

2001-12-02	Gaurav Vaish <gvaish@iitk.ac.in>

	CheckBoxList.cs            - Partial Implementation.
	                             All except "Render"

2001-12-01	Gaurav Vaish <gvaish@iitk.ac.in>

	ListControl.cs             - Completed

2001-11-30	Gaurav Vaish <gvaish@iitk.ac.in>

	CheckBox.cs                - Completed
	ListControl.cs             - Initial Implementation
	CheckBoxList.cs            - Started with it, but first needed
	                             ListControl. Left it.

2001-11-29	Gaurav Vaish <gvaish@iitk.ac.in>

	CalendarDay.cs             - Making a note that this
	                             has been implemented
	Calendar.cs                - Making a note that have made some changes.
	                             Unimplmented functions throw
	                             NotImplementedException
	CheckBox.cs                - Can now "Render" and "LoadPostData"


2001-11-08	Gaurav Vaish <gvaish@iitk.ac.in>
	WebControl.cs              - Total Revamp, Partial Implementation
	AdRotator.cs               - Able to load files
	AdCreatedEventArgs.cs      - Implemented

2001-11-05	Gaurav Vaish <gvaish@iitk.ac.in>
	Calendar.cs                - Initial Implementation
	ButtonColumn.cs            - Initial Implementation
	Button.cs                  - Initial Implementation
	BoundColumn.cs             - Initial Implementation
	BaseCompareValidator.cs    - Minor Changes
	DataList.cs, BaseValidator.cs, BaseDataList.cs
	                           - Added more functions, other changes
	
2001-10-28	Gaurav Vaish <gvaish@iitk.ac.in>
	WebControl.cs              - Initial Implementation
	DataList.cs                - Initial Implementation
	BaseValidator.cs           - Initial Implementation
	BaseDataList.cs            - Initial Implementation

2001-10-27	Gaurav Vaish <gvaish@iitk.ac.in>

	AdCreatedEventArgs.cs      - Initial Implementation
	AdCratedEventHandler.cs    - Implemented
	AdRotator.cs               - Initial Implementation
	BorderStyle.cs             - Implemented
	ButtonColumnStyle.cs       - Implemented
	CalendarSelectionMode.cs   - Implemented
	DayNameFormat.cs           - Implemented
	FirstDayOfWeek             - Implemented
	FontInfo.cs                - Partial Implementation
	FontSize.cs                - Implemented
	GridLines.cs               - Implemented
	HorizontalAlign.cs         - Implemented
	HyperLink.cs               - Initial Implementation
	ImageAlign.cs              - Implemented
	IRepeatInfoUser.cs         - Implemented
	ListItemType.cs            - Implemented
	ListSelectionMode.cs       - Implemented
	NextPrevFormat.cs          - Implemented
	PagerMode.cs               - Implemented
	PagerPosition.cs           - Implemented
	RepeatDirection.cs         - Implemented
	RepeatLayout.cs            - Implemented
	TextAlign.cs               - Implemented
	TextBoxMode.cs             - Implemented
	TitleFormat.cs             - Implemented
	UnitType.cs                - Implemented
	ValidationCompareOperator.cs
	                           - Implemented
	ValidationDataType.cs      - Implemented
	ValidationSummaryDisplayMode.cs
	                           - Implemented
	ValidatorDisplay.cs        - Implemented
	VerticalAlign.cs           - Implemented



// File Created 2001-11-13