2
0

ChangeLog 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650
  1. 2002-07-08 Gonzalo Paniagua Javier <[email protected]>
  2. * BaseDataList.cs: a couple of fiex and added attributes.
  3. * DataGrid.cs: little fixes.
  4. 2002-07-07 Gonzalo Paniagua Javier <[email protected]>
  5. * CheckBoxList.cs:
  6. * DataGrid.cs:
  7. * DataList.cs:
  8. * DropDownList.cs:
  9. * ListBox.cs:
  10. * PlaceHolder.cs:
  11. * RadioButton.cs:
  12. * RadioButtonList.cs:
  13. * TableRow.cs:
  14. * WebControl.cs:
  15. * Xml.cs: forgot to add using System.ComponentModel.
  16. * BaseValidator.cs: use explicitly
  17. System.ComponentModel.AttributeCollection as there is another class
  18. with the same name under System.Web.UI.
  19. 2002-07-07 Gonzalo Paniagua Javier <[email protected]>
  20. * AdRotator.cs:
  21. * Button.cs:
  22. * Calendar.cs:
  23. * CheckBox.cs:
  24. * CheckBoxList.cs:
  25. * DataGrid.cs:
  26. * DataList.cs:
  27. * DropDownList.cs:
  28. * HyperLink.cs:
  29. * Image.cs:
  30. * ImageButton.cs:
  31. * Label.cs:
  32. * LinkButton.cs:
  33. * ListBox.cs:
  34. * Panel.cs:
  35. * PlaceHolder.cs:
  36. * RadioButton.cs:
  37. * RadioButtonList.cs:
  38. * Table.cs:
  39. * TableRow.cs:
  40. * TextBox.cs:
  41. * WebControl.cs:
  42. * Xml.cs: added/fixed all attributes used by xsp.
  43. * BaseValidator.cs: some fixes.
  44. 2002-07-06 Gonzalo Paniagua Javier <[email protected]>
  45. * Table.cs:
  46. (AddAttributesToRender): correctly default to border=1.
  47. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  48. * AdRotator.cs:
  49. (LoadAdFile): make the dictionary null after every iteration.
  50. * LinkButton.cs:
  51. * ListControl.cs:
  52. * ListItem.cs: fixed warnings.
  53. Mon Jul 1 16:23:15 CEST 2002 Paolo Molaro <[email protected]>
  54. * Style.cs, TableRow.cs, DataListItem.cs: fix compilation.
  55. 2002-06-30 Gonzalo Paniagua Javier <[email protected]>
  56. * DataGridColumn.cs:
  57. * DataGridPagerStyle.cs:
  58. * DataList.cs:
  59. * DataListItem.cs:
  60. * Image.cs:
  61. * LinkButton.cs:
  62. * ListControl.cs:
  63. * ListItem.cs:
  64. * ListItemCollection.cs:
  65. * Repeater.cs:
  66. * ServerValidateEventArgs.cs:
  67. * Style.cs:
  68. * TableRow.cs:
  69. * WebControl.cs:
  70. * Xml.cs: more class status page based changes.
  71. 2002-06-29 Gonzalo Paniagua Javier <[email protected]>
  72. * Button.cs:
  73. (.ctor): fixed to render the correct tag.
  74. (IPostBAckEventHandler.RaisePostBackEvent): fixed.
  75. 2002-06-24 Gonzalo Paniagua Javier <[email protected]>
  76. * WebControl.cs:
  77. (AddAttributesToRender): call Page.VerifyRenderingInServerForm. All
  78. WebControl derived classes should be rendered inside a HtmlForm.
  79. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  80. * Repeater.cs: implemented CreateControlHierarchy. Fixed some event
  81. processing methods.
  82. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  83. * RadioButtonList.cs: implemented IRepeatInfoUser.RenderItem.
  84. * RepeatInfo.cs: implemented DoHorizontalRendering.
  85. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  86. * System.Web.UI.WebControls/Repeater.cs:
  87. (Controls):
  88. (OnDataBinding): fixed stack overflow.
  89. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  90. * RadioButtonList.cs: implemented IRepeatInfoUser.RenderItem.
  91. * RepeatInfo.cs: implemented DoHorizontalRendering.
  92. 2002-06-18 Gonzalo Paniagua Javier <[email protected]>
  93. * WebControl.cs:
  94. (CopyBaseAttributes): copy Attributes and don't throw exception.
  95. 2002-06-18 Gonzalo Paniagua Javier <[email protected]>
  96. * ListBox.cs: mono-stylized.
  97. (AddAttributesToRender): call parent class method.
  98. 2002-06-17 Gonzalo Paniagua Javier <[email protected]>
  99. * Style.cs: fixed IsEmpty and Width.
  100. * Table.cs: mono-stylized.
  101. (TableRowControlCollection.AddAt): fixed.
  102. (AddAttributesToRender): fixed.
  103. * TableCell.cs: mono-stylized.
  104. (.ctor): use PreventAutoID.
  105. (AddAttributesToRender): fixed.
  106. (AddParsedSubObject): fixed.
  107. * TableRow.cs: mono-stylized. Added
  108. ParseChildren attribute.
  109. * TableStyle.cs:
  110. (get_GridLine): fixed.
  111. 2002-06-16 Gonzalo Paniagua Javier <[email protected]>
  112. * Panel.cs: fixed stack overflow.
  113. * Unit.cs: use Int32.Parse and Single.Parse instead of Int32Converter
  114. and SingleConverter.
  115. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  116. * RadioButton.cs: mono-stylized and some little fixes.
  117. * TextBox.cs: mono-stylized.
  118. (MaxLength): fixed typo.
  119. (AddAttributesToRender): don't render the text between the tags for
  120. SingleLine, use value attribute for it. Don't render the text for
  121. Password.
  122. (OnPreRender): don't throw exception and call base.OnPreRender.
  123. (Render): for MultiLine, render the text between the opening and
  124. closing tags encoded as HTML.
  125. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  126. * ImageButton.cs:
  127. (AddAttributesToRender): fixer another stack overflow.
  128. * WebControl.cs:
  129. (TagName): modified to use TagKey instead of tagKey as the property
  130. can be overriden.
  131. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  132. * LinkButton.cs: mono-stylized.
  133. (AddParsedSubObject):
  134. (RenderControls): little fixes.
  135. * WebControl.cs:
  136. (AddAttributesToRender): fixed usage of IEnumerator.
  137. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  138. * Literal.cs: beautified.
  139. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  140. * Label.cs: beautified and fixed a couple of 'classic' bugs.
  141. * WebControl.cs: use Span as default tag when no other provided in
  142. constructor. That is what MS renders.
  143. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  144. * Button.cs:
  145. (AddAttributesToRender): fixed (classic) stack overflow.
  146. * CheckBox.cs: mono-stylized.
  147. (AutoPostBack): fixed stack overflow.
  148. (Render): fixed alignment issues. Also set the For attribute always
  149. for the label.
  150. 2002-06-11 Gonzalo Paniagua Javier <[email protected]>
  151. * AdRotator.cs: GetData does not work as it should, but now it returns
  152. useful data (only the first ad in the file). Set the NavigateUrl
  153. property in the hyperlink if available.
  154. * HyperLink.cs: fixed constructor and a couple of stack overflows.
  155. * Image.cs: added an attribute and fixed stack overflow.
  156. * WebControl.cs:
  157. (RenderBeginTag): fixed.
  158. (TagName): don't call Enum.IsDefined twice.
  159. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  160. * WebControl.cs: added attributes PersistChildrenAttribute and
  161. ParseChildrenAttribute.
  162. 2002-05-24 Duncan Mak <[email protected]>
  163. * DataGridItem.cs (SetItemType): Changed function signature to
  164. match 1.0 spec.
  165. * ListItemCollection.cs (this): Changes the visibility level of
  166. the indexer.
  167. * Repeater.cs (OnItemCommand):
  168. (OnItemCreated):
  169. (OnItemDataBound): Added necessary casts.
  170. 2002-05-07 Duncan Mak <[email protected]>
  171. * Button.cs (AddAttributesToRender):
  172. * ImageButton.cs (AddAttributesToRender): Added a missing argument to the
  173. GetClientValidatedEvent method.
  174. 2002-03-27 Gaurav Vaish <[email protected]>
  175. * Removed extra methods, corrected access modifiers to several
  176. methods.
  177. 2002-03-26 Gaurav Vaish <[email protected]>
  178. * <SeveralFiles>.cs - Added some attributes
  179. * FontUnitConverter.cs - Added stubs for GetStandardValues*(..)
  180. methods. Will complete them later. Right now, busy with
  181. the attributes part.
  182. * RepeaterItem.cs - Completed.
  183. Oh God! Mercy! I will die applying attributes. I look at the missing
  184. part in the class-status - daemon! Kyrie eleison!
  185. 2002-03-19 Gaurav Vaish <[email protected]>
  186. Some bug fixes
  187. * AdRotator.cs - Added definition for Font.
  188. * BaseCompareValidator.cs - Added definition for Controls.
  189. * Calendar.cs - SelectMonthText definition corrected.
  190. * DataList.cs - Added definition for SeparatorTemplate.
  191. * BorderStyle.cs - Namespace correction. It belongs not to UI,
  192. but to UI.WebControls.
  193. 2002-03-17 Gaurav Vaish <[email protected]>
  194. Finally, I have made it. Today I did a second build for the
  195. System.Web assembly. It compiled 195 classes today.
  196. I am waiting eagerly for the runtime to come up so that the objects
  197. may be tested to their last levels. Several of the methods are still
  198. under the tag of "TODO" throwing NotImplementedException. Well, I
  199. hope to remove them soon, but how far is this soon - even I don't
  200. know, though I am happy to make the build a success even before
  201. the vacations to come.
  202. 2002-03-07 Gaurav Vaish <[email protected]>
  203. Yesterday and today I tried to do some building of the aseembly,
  204. but was dumped with uncoutably infinite errors. ;-)
  205. I have put the copies of the recent errors on my home page, want
  206. to have a look at them? See:
  207. http://mastergaurav.virtualave.net/mono/
  208. I don't know what to do with these errors. Oh! The buggy me! How
  209. will I overcome myself. Hopefully, by when my vacations over, I
  210. should have made a repository where the build will not fail.
  211. 2002-03-05 Gaurav Vaish <[email protected]>
  212. I am now going to do a build that will include the
  213. System.Web.UI.WebControls namespace. Hoping that I will make it
  214. soon. My exams are coming near and I have to pack up soon.
  215. 2002-03-04 Gaurav Vaish <[email protected]>
  216. Comments:
  217. And with this, ie, today's work, all the objects mentioned in the
  218. namespace appear in the implementation. But it may not be worth
  219. trying to go for a build because of dependence of several of the
  220. internal methods that may clash with already available assembly
  221. System.Web.
  222. Also, the classes lack possible attributes, like those informing
  223. about child-controls etc. But I have to first create the attribute
  224. classes before I attach the attributes to the classes.
  225. * CustomValidator.cs - Completed. In process realized that
  226. I have to complete / rejuvinate BaseValidator class.
  227. * BaseValidator.cs - Complete rejuvination. Completed 80%
  228. of the job. All that is left is Render(HtmlTextWriter),
  229. DetermineRenderUplevel(), RegisterValidatorCommonScript()
  230. RegisterValidatorDeclaration()
  231. * DataGridPagerStyle.cs - Completed. That adds one more missle
  232. in my artillery.
  233. * DataKeyCollection.cs - Completed. Petty small.
  234. * Repeater.cs - Work started off. This is a quite
  235. heavy class. Hooh!
  236. * DataGridItemEventArgs.cs,
  237. * DataGridShortCommandEventArgs.cs,
  238. * DataListItemEventArgs.cs,
  239. * MonthChangedEventArgs.cs,
  240. * RepeaterItemEventArgs.cs,
  241. * ServerValidateEventArgs.cs,
  242. * DataGridPageChangedEventArgs.cs
  243. - Damn, I marked them "*", while they
  244. did not exist.
  245. * Repeater.cs - Done all except for an undocumented
  246. method CreateControlHierarchy(bool). Though the method
  247. is quite clear by its name, but it will take some time
  248. for me to come with some material to flush in.
  249. 2002-03-03 Gaurav Vaish <[email protected]>
  250. * SelectedDatesCollection.cs - Completed.
  251. * PagedDataSource.cs - Completed. Pathetically nice class.
  252. * RegularExpressionValidator.cs
  253. - Completed. Ridiculously small and
  254. annoyinglyc crazy-driving class, basically the method
  255. EvaluateIsValid().
  256. * RangeValidator.cs - Completed.
  257. * DataGridColumn.cs - Completed.
  258. * EditCommandColumn.cs - All is complete except for the
  259. InitializeCell(TableCell, int, ListItemType) method.
  260. * DataListItem.cs - All done except for a longish method
  261. RenderItem(HtmlTextWriter, bool, bool)
  262. 2002-03-02 Gaurav Vaish <[email protected]>
  263. * RepeaterItemCollection.cs - Completed.
  264. I love *Collection classes. I am planning to make a
  265. program that will generate a *Collection class. It's so
  266. simple and the same. ;-)
  267. * DataGridColumnCollection.cs - Completed.
  268. ... except probably for *ColumnCollection classes, where
  269. you have to put in some more effort. Still, these class
  270. generation can be automated.
  271. * DataListItemCollection.cs - Completed.
  272. See, how easily, in less than a quarter of a minute, I
  273. completed this class - manually. Copy-Paste/Cut-Replace.
  274. 2002-02-21 Gaurav Vaish <[email protected]>
  275. * DataGrid.cs - Following methods implemented:
  276. TrackViewState(), LoadViewState(object), SaveViewState(),
  277. On* -- The event raisers.
  278. OnBubbleEvent(object, EventArgs) is still incomplete.
  279. * DataGridItem.cs - Initial Implementation
  280. * DataGridItemCollection.cs - Completed.
  281. 2002-02-08 Gaurav Vaish <[email protected]>
  282. * DataGrid.cs - Initial Implementation. Worked
  283. primarily with some properties.
  284. 2002-02-07 Gaurav Vaish <[email protected]>
  285. * ListBox.cs - Completed. Implemented
  286. LoadPostData(string, NameValueCollection)
  287. * RequiredFieldValidator.cs - Completed. Pretty simple class.
  288. 2002-02-06 Gaurav Vaish <[email protected]>
  289. * ListBox.cs - Implemented the following:
  290. RaisePostDataChangedEvent()
  291. 2002-02-02 Gaurav Vaish <[email protected]>
  292. * ListBox.cs - Supports the following properties:
  293. BorderColor, BorderStyle, BorderWidth, Rows, SelectionMode,
  294. ToolTip.
  295. Methods:
  296. AddAttributesToRender(HtmlTextWriter), OnPreRender(EventArgs),
  297. RenderContents(HtmlTextWriter)
  298. 2002-02-01 Gaurav Vaish <[email protected]>
  299. * TargetConverter.cs - Completed
  300. * TemplateColumn.cs - Completed
  301. * DataList.cs - Corrected the get-er methods for the
  302. *Style objects. Corrected the get/set-er methods for ViewState
  303. related objects.
  304. Addded support for properties:
  305. GridLines, HeaderStyle, HeaderTemplate, ItemStyle, ItemTemplate,
  306. RepeatColumns, RepeatDirection, RepeatLayout, SelectedIndex,
  307. SelectedItem, SelectedItemStyle, SelectedItemTemplate,
  308. SeparatorStyle, SeparatorItemTemplate.
  309. Events:
  310. CancelCommand, DeleteCommand, EditCommand, ItemCommand,
  311. ItemCreated, ItemDataBound, UpdateCommand.
  312. Methods:
  313. CreateControlStyle(), LoadViewState(object),
  314. SaveViewState(), TrackViewState
  315. Event handlers:
  316. OnBubbleEvent, OnCancelCommand, OnDeleteCommand,
  317. OnEditCommand, OnItemCommand, OnItemCreated,
  318. OnItemDataBound, OnUpdateCommand
  319. Added dummy methods for some undocumented methods:
  320. CreateControlHierarchy(bool), CreateItem(int, ListItemType),
  321. CreateItem(int, ListItemType, bool, object),
  322. PrepareControlHierarchy(), InitializeItem(DataListItem)
  323. * ListBox.cs - Started working.
  324. 2002-01-31 Gaurav Vaish <[email protected]>
  325. * RepeaterInfo.cs - Initial Implementation. Done all
  326. except for RepeatDirection.Vertical
  327. * TableStyle.cs - Completed
  328. 2002-01-30 Gaurav Vaish <[email protected]>
  329. * DropDownList.cs - Completed
  330. * ListItemCollection.cs - Added method FindByValueInternal to
  331. assist in the derived classes.
  332. Discovered bug in FindByValue. Removed
  333. * UnitConverter.cs - Completed
  334. * PlaceHolder.cs - What can be simpler than this?
  335. * PlaceHolderControlBuilder.cs
  336. - Uh! Damn cool one.
  337. * RadioButtonList.cs - Initial Implementation. All is done
  338. except for the implementation of
  339. method IRepeatInfoUser.RenderItem(...)
  340. * ValidatedControlConverter.cs
  341. ^^^^^^^^^^^^^^^^^^^^^^^^^ - Looks complete. Doubtful though !!
  342. * ValidationSummary.cs - Initial Implementation.
  343. * WebColorConverter.cs - Initial Implementation
  344. 2002-01-27 Gaurav Vaish <[email protected]>
  345. * FontNamesConverter.cs - Completed
  346. * FontUnitConverter.cs - Partial Implementation
  347. * ListItemControlBuilder.cs - Completed
  348. 2002-01-27 Gaurav Vaish <[email protected]>
  349. * TextBox.cs - All done except *Render* methods
  350. * TextBoxControlBuilder.cs - Completed
  351. * Xml.cs - Partial Implementation
  352. 2002-01-26 Gaurav Vaish <[email protected]>
  353. * RadioButton.cs - Completed
  354. * TextBox.cs - Partial Implementation
  355. 2002-01-25 Gaurav Vaish <[email protected]>
  356. * Panel.cs - Completed
  357. * TableItemStyle.cs - Completed
  358. 2002-01-18 Gaurav Vaish <[email protected]>
  359. * TableCellCollection.cs - Completed
  360. * TableRowCollection.cs - Completed
  361. * TableHeaderCell.cs - Completed
  362. * TableRow.cs - Completed
  363. 2002-01-09 Gaurav Vaish <[email protected]>
  364. * TableCellControlBuilder.cs - Completed
  365. * Table.cs - Completed
  366. * TableCell.cs - Completed
  367. 2002-01-07 Gaurav Vaish <[email protected]>
  368. * CheckBoxList.cs - Completed
  369. * ButtonColumn.cs - Completed
  370. * Button.cs - Completed
  371. 2001-12-28 Gaurav Vaish <[email protected]>
  372. * HyperLink.cs - Completed
  373. * Image.cs - Completed
  374. * ImageButton.cs - Completed
  375. * Label.cs - Completed
  376. * LabelControlBuilder.cs - Completed
  377. * LinkButton.cs - Completed
  378. * LinkButtonControlBuilder.cs - Completed
  379. * Literal.cs - Completed
  380. * LieteralControlBuilder.cs - Completed
  381. * FontUnit.cs - Completed
  382. 2001-12-27 Gaurav Vaish <[email protected]>
  383. * Calendar.cs - Completed the functions of Render*,
  384. ViewStates (Track/View/Save),
  385. RaisePostBackEvent.
  386. Left: RenderAllDays (partially)
  387. 2001-12-21 Gaurav Vaish <[email protected]>
  388. * Calendar.cs - Added some more functions
  389. * Style.cs - Completed
  390. * ListItem.cs - Completed
  391. * ListItemCollection.cs - Completed
  392. Made the first successful build of System.Web.dll that included
  393. System.Web.UI.WebControls!
  394. 2001-12-20 Gaurav Vaish <[email protected]>
  395. FontInfo.cs - Complete revamp. Completed
  396. 2001-12-19 Gaurav Vaish <[email protected]>
  397. ListItemCollection.cs - Completed
  398. ListItem.cs - Initial Implementation
  399. Style.cs - Initial Implementation
  400. Right now I am in a total mood to do a successful build. Creating so many
  401. classes, completing classes in System.Web System.Web.UI namespaces.
  402. 2001-12-18 Gaurav Vaish <[email protected]>
  403. TODO - Properly added
  404. CheckBox.cs - Completed
  405. BaseDataList.cs - Completed
  406. DayRenderEventArgs.cs - Completed
  407. RepeaterItem.cs - Initial implementation
  408. 2001-12-17 Gaurav Vaish <[email protected]>
  409. BaseCompareValidator.cs - Completed
  410. AdRotator.cs - Completed
  411. 2001-12-15 Gaurav Vaish <[email protected]>
  412. CommandEventArgs.cs - Completed
  413. DataGridCommandEventArgs.cs - Completed
  414. RepeaterCommandEventArgs.cs - Completed
  415. DataListCommandEventArgs.cs - Completed
  416. CompareValidator.cs - Partial Implementation
  417. 2001-12-02 Gaurav Vaish <[email protected]>
  418. CheckBoxList.cs - Partial Implementation.
  419. All except "Render"
  420. 2001-12-01 Gaurav Vaish <[email protected]>
  421. ListControl.cs - Completed
  422. 2001-11-30 Gaurav Vaish <[email protected]>
  423. CheckBox.cs - Completed
  424. ListControl.cs - Initial Implementation
  425. CheckBoxList.cs - Started with it, but first needed
  426. ListControl. Left it.
  427. 2001-11-29 Gaurav Vaish <[email protected]>
  428. CalendarDay.cs - Making a note that this
  429. has been implemented
  430. Calendar.cs - Making a note that have made some changes.
  431. Unimplmented functions throw
  432. NotImplementedException
  433. CheckBox.cs - Can now "Render" and "LoadPostData"
  434. 2001-11-08 Gaurav Vaish <[email protected]>
  435. WebControl.cs - Total Revamp, Partial Implementation
  436. AdRotator.cs - Able to load files
  437. AdCreatedEventArgs.cs - Implemented
  438. 2001-11-05 Gaurav Vaish <[email protected]>
  439. Calendar.cs - Initial Implementation
  440. ButtonColumn.cs - Initial Implementation
  441. Button.cs - Initial Implementation
  442. BoundColumn.cs - Initial Implementation
  443. BaseCompareValidator.cs - Minor Changes
  444. DataList.cs, BaseValidator.cs, BaseDataList.cs
  445. - Added more functions, other changes
  446. 2001-10-28 Gaurav Vaish <[email protected]>
  447. WebControl.cs - Initial Implementation
  448. DataList.cs - Initial Implementation
  449. BaseValidator.cs - Initial Implementation
  450. BaseDataList.cs - Initial Implementation
  451. 2001-10-27 Gaurav Vaish <[email protected]>
  452. AdCreatedEventArgs.cs - Initial Implementation
  453. AdCratedEventHandler.cs - Implemented
  454. AdRotator.cs - Initial Implementation
  455. BorderStyle.cs - Implemented
  456. ButtonColumnStyle.cs - Implemented
  457. CalendarSelectionMode.cs - Implemented
  458. DayNameFormat.cs - Implemented
  459. FirstDayOfWeek - Implemented
  460. FontInfo.cs - Partial Implementation
  461. FontSize.cs - Implemented
  462. GridLines.cs - Implemented
  463. HorizontalAlign.cs - Implemented
  464. HyperLink.cs - Initial Implementation
  465. ImageAlign.cs - Implemented
  466. IRepeatInfoUser.cs - Implemented
  467. ListItemType.cs - Implemented
  468. ListSelectionMode.cs - Implemented
  469. NextPrevFormat.cs - Implemented
  470. PagerMode.cs - Implemented
  471. PagerPosition.cs - Implemented
  472. RepeatDirection.cs - Implemented
  473. RepeatLayout.cs - Implemented
  474. TextAlign.cs - Implemented
  475. TextBoxMode.cs - Implemented
  476. TitleFormat.cs - Implemented
  477. UnitType.cs - Implemented
  478. ValidationCompareOperator.cs
  479. - Implemented
  480. ValidationDataType.cs - Implemented
  481. ValidationSummaryDisplayMode.cs
  482. - Implemented
  483. ValidatorDisplay.cs - Implemented
  484. VerticalAlign.cs - Implemented
  485. // File Created 2001-11-13