ChangeLog 43 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261
  1. 2002-10-08 Gaurav Vaish <gvaish_mono AT lycos.com>
  2. * WebControl.cs : Attributes { get; } - Is Complete.
  3. * ValidationSummary.cs : AddAttributesToRender(HtmlTextWriter)
  4. - Completed.
  5. 2002-10-08 Gaurav Vaish <gvaish_mono AT lycos.com>
  6. * BaseValidator.cs : DetermineRenderUplevel() - Completed.
  7. : RegisterValidatorCommonScript()
  8. - More code, I need HELP!
  9. : RegisterValidatorDeclaration()
  10. - More code, I need HELP!
  11. 2003-09-29 Gonzalo Paniagua Javier <[email protected]>
  12. * CheckBoxList.cs: don't lose state when enabling/disabling. See bug
  13. #48802.
  14. 2003-09-28 Gonzalo Paniagua Javier <[email protected]>
  15. * Repeater.cs: fixed bug #48807. It needed to use a DummyDataSource and
  16. ClearViewState only called when no items.
  17. 2003-09-28 Gonzalo Paniagua Javier <[email protected]>
  18. * RadioButtonList.cs: fix for bug #48874 by Yaron Shkop.
  19. 2003-09-28 Gonzalo Paniagua Javier <[email protected]>
  20. * RadioButtonList.cs: fix for bug #48870 by Yaron Shkop.
  21. 2003-09-27 Gonzalo Paniagua Javier <[email protected]>
  22. * DataList.cs: fixed bug #48217. Patch by [email protected] (Yaron
  23. Shkop).
  24. 2003-09-27 Gonzalo Paniagua Javier <[email protected]>
  25. * AdRotator.cs: fixes bug #48691. Patch by [email protected] (Yaron
  26. Shkop).
  27. 2003-09-27 Gonzalo Paniagua Javier <[email protected]>
  28. * CheckBox.cs: render the 'disabled' attribute in the correct tag.
  29. * WebControl.cs: fixed Enabled property and save it in ViewState.
  30. Fixes bug #48802.
  31. 2003-09-21 Gonzalo Paniagua Javier <[email protected]>
  32. * ListControl.cs: fixed bug #48668. Thanks to Yaron Shkop.
  33. 2003-09-21 Gonzalo Paniagua Javier <[email protected]>
  34. * ListBox.cs: patch by [email protected] (Yaron Shkop) that fixes
  35. bug #48671.
  36. 2003-09-19 Gonzalo Paniagua Javier <[email protected]>
  37. * FontInfo.cs: fixed Name property as suggested by Rich Alimi
  38. <[email protected]>.
  39. 2003-09-14 Gonzalo Paniagua Javier <[email protected]>
  40. * RegularExpressionValidator.cs: fix for EvaluateIsValid by Juraj
  41. Skripsky <[email protected]>
  42. 2003-09-13 Gonzalo Paniagua Javier <[email protected]>
  43. * BaseValidator.cs: patch by Juraj Skripsky ([email protected]) that
  44. fixes rendering of the end tag.
  45. 2003-08-31 Gonzalo Paniagua Javier <[email protected]>
  46. * Repeater.cs: fix for Items property provided by [email protected]
  47. (Yaron Shkop). Closes bug #48060.
  48. 2003-08-26 Gonzalo Paniagua Javier <[email protected]>
  49. * CheckBox.cs: in LoadPostData, only return
  50. true when the new data is different from the one we had. Fixed
  51. conditions to save Checked state. Thanks to [email protected]
  52. (Yaron Shkop).
  53. 2003-08-26 Gonzalo Paniagua Javier <[email protected]>
  54. * Style.cs: Font.Strikeout renders as 'line-through'. Fixes bug #47871.
  55. 2003-08-25 Gonzalo Paniagua Javier <[email protected]>
  56. * WebControl.cs: removed dangling ^M and unneeded fields. Keep track
  57. of Enable in ViewState. Fixes bug #47865.
  58. 2003-08-20 Gonzalo Paniagua Javier <[email protected]>
  59. * Style.cs: the MARKED bit is not send set in ViewState unless something
  60. is changed. Fixed TrackViewState condition.
  61. * WebControl.cs: save the base ViewState *after* ControlStyle is done,
  62. because it uses the same ViewState as the control. Fixes bug #47725.
  63. 2003-08-16 Gonzalo Paniagua Javier <[email protected]>
  64. * HyperLinkColumn.cs: patch from David Pickens <[email protected]>
  65. that fixes databinding when only DataTextField or DataNavigateUrlField
  66. is set.
  67. 2003-08-14 Gonzalo Paniagua Javier <[email protected]>
  68. * ListControl.cs: patch sent by Yaacov Akiba Slama <[email protected]> on
  69. behalf of Yaron Shkop <[email protected]> that fixes selection of
  70. values before assigning a data source and other issues.
  71. 2003-08-11 Gonzalo Paniagua Javier <[email protected]>
  72. * CheckBox.cs: save viewstate when needed and correctly handle post
  73. data. Fixes bug #47462.
  74. 2003-08-01 Andreas Nahr <[email protected]>
  75. * ButtonColumn.cs: Removed additional attributes
  76. * CheckBox.cs: Added attribute
  77. * DataGrid.cs: Added attributes
  78. * HyperLinkColumn.cs: Changed attributes, added lamespec
  79. * Style.cs: Removed attributes
  80. * TextBox.cs: Added/ removed attributes
  81. 2003-08-01 Andreas Nahr <[email protected]>
  82. * AdRotator.cs: Added all attributes
  83. * BaseDataList.cs: Added all attributes, added lamespec, removed additional attributes
  84. * BaseValidator.cs: Added all attributes
  85. * BoundColumn.cs: Added all attributes
  86. * Button.cs: Added all attributes
  87. * ButtonColumn.cs: Added all attributes, added lamespec
  88. * Calendar.cs: Added all attributes, added error checks, throws more exceptions
  89. * CheckBox.cs: Added all attributes
  90. * CheckBoxList.cs: Added all attributes
  91. * CompareValidator.cs: Added all attributes
  92. * CustomValidator.cs: Added all attributes
  93. * DataGrid.cs: Added all attributes, more verbose exceptions, fixed signature, removed additional attributes
  94. * DataGridColumn.cs: Added all attributes
  95. * DataGridColumnCollection.cs: Added all attributes
  96. * DataGridPagerStyle.cs: Added all attributes
  97. * DataGridTableInternal.cs: Made DataGridTableInternal internal
  98. * DataList.cs: Added all attributes, more verbose exceptions, removed non-existing member
  99. * DropDownList.cs: Added all attributes
  100. * FontInfo.cs: Added all attributes
  101. * HyperLink.cs: Added all attributes
  102. * HyperLinkColumn.cs: Added all attributes
  103. * Image.cs: Added all attributes
  104. * ImageButton.cs: Added all attributes
  105. * Label.cs: Added all attributes
  106. * LinkButton.cs: Added all attributes
  107. * ListBox.cs: Added all attributes, added error checks, throws more exceptions
  108. * ListControl.cs: Added all attributes
  109. * ListItem.cs: Added all attributes
  110. * ListItemCollection.cs: Added attribute
  111. * Literal.cs: Added all attributes
  112. * Panel.cs: Added all attributes
  113. * RadioButton.cs: Added all attributes
  114. * RadioButtonList.cs: Added all attributes, added error checks, throws more exceptions
  115. * RangeValidator.cs: Added all attributes
  116. * RegularExpressionValidator.cs: Added all attributes
  117. * Repeater.cs: Added all attributes
  118. 2003-07-30 Andreas Nahr <[email protected]>
  119. * RequiredFieldValidator.cs: Added all attributes
  120. * Style.cs: Added all attributes
  121. * Table.cs: Added all attributes
  122. * TableCell.cs: Added all attributes, added error checks, throws more exceptions
  123. * TableCellCollection.cs: Added attribute
  124. * TableRow.cs: Added all attributes
  125. * TableRowCollection: Added attribute
  126. * TableStyle.cs: Added all attributes, improved error messages
  127. * TemplateColumn.cs: Added all attributes
  128. * TextBox.cs: Added all attributes, added error checks, throws more exceptions
  129. * ValidationSummary.cs: Added all attributes
  130. * WebControl.cs: Added all attributes
  131. * Xml.cs: Added all attributes
  132. 2003-07-30 Gonzalo Paniagua Javier <[email protected]>
  133. * DataGrid.cs: fixed signature of ItemCreated and PageIndexChanged.
  134. * DataList.cs: fixed signature of ItemCreated and ItemDataBound.
  135. 2003-07-21 Gonzalo Paniagua Javier <[email protected]>
  136. * CheckBoxList.cs: fixes bug reported on the list about the state of
  137. the CheckButtons not being preserved across posts.
  138. 2003-07-21 Gonzalo Paniagua Javier <[email protected]>
  139. * ListControl.cs: added SelectedValue property (1.1). Closes 46412.
  140. 2003-06-30 Gonzalo Paniagua Javier <[email protected]>
  141. * AdRotator.cs: fixed bug #44271 and a few others bugs. Mono-stylized.
  142. 2003-06-26 Gonzalo Paniagua Javier <[email protected]>
  143. * ListControl.cs: save viewstate data when any of the 3 values is not
  144. null. Fixed condition to save selection indices. Closes bug #45493.
  145. 2003-06-20 Gonzalo Paniagua Javier <[email protected]>
  146. * DataGrid.cs: fixed bug #43823.
  147. 2003-05-29 Gonzalo Paniagua Javier <[email protected]>
  148. * DataGrid.cs: fixed delegate type for SortCommand.
  149. 2003-05-09 Gonzalo Paniagua Javier <[email protected]>
  150. * DataGridColumnCollection.cs: added missing return in RemoveAt.
  151. 2003-05-09 Gonzalo Paniagua Javier <[email protected]>
  152. * DataGridColumnCollection.cs: fixed LoadViewState for the columns.
  153. Don't save ViewState is the number of columns is 0.
  154. 2003-05-02 Gonzalo Paniagua Javier <[email protected]>
  155. * DataGrid.cs: get the right item Type for the property we're reading
  156. fromt the data source.
  157. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  158. * Label.cs:
  159. * TextBox.cs: added control builder attribute.
  160. 2003-03-29 Gonzalo Paniagua Javier <[email protected]>
  161. * DataGrid.cs: Fixed SaveViewState and type of ItemDataBound.
  162. 2003-03-17 George Kodinov <[email protected]>
  163. * Unit.cs: Called the correct method to get the Numeric locale for the
  164. double conversion
  165. 2003-02-15 Gonzalo Paniagua Javier <[email protected]>
  166. * ButtonColumn.cs: fixed a couple of infinite loop problems and render
  167. correctly the header of the column.
  168. * DataGridTableInternal.cs: don't assign a default ID to this control.
  169. * LinkButton.cs: raise bubble event in OnCommand.
  170. * TableCellCollection.cs: fixed the index returned by Add.
  171. * TableRowCollection.cs: ditto.
  172. 2003-02-06 Gonzalo Paniagua Javier <[email protected]>
  173. * Xml.cs: don't call MapPathSecure when setting DocumentSource.
  174. 2003-02-05 Gonzalo Paniagua Javier <[email protected]>
  175. * RangeValidator.cs: fixed bug #37577. Thanks to Stephane Tombeur
  176. for reporting the bug and providing the fix.
  177. 2003-01-26 Gonzalo Paniagua Javier <[email protected]>
  178. * DataGrid.cs: AutoGenerateColumns defaults to true. Fixed
  179. CreateColumnSet. Set the owner of the column when auto generated.
  180. In PrepareControlHierarchyForItem, fixed for loop bound.
  181. * LinkButtonInternal.cs: fixed infinite recursion bug.
  182. Fixes bug #37124.
  183. 2003-01-22 Zdravko Tashev <[email protected]>
  184. * Xml.cs: a few fixes.
  185. 2003-01-20 Gonzalo Paniagua Javier <[email protected]>
  186. * DataList.cs: handle the exception when adding new keys to
  187. DataKeysArray.
  188. 2003-01-17 Gonzalo Paniagua Javier <[email protected]>
  189. * BaseDataList.cs: what can I say for this one? I spent so many time
  190. until I finally found this that I'm gonna miss this f....g bug... ;-).
  191. Farewell. Now we can get events from image buttons inside Data*.
  192. * DataList.cs: now the value stored in ViewState for item count is
  193. correct.
  194. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  195. * DataGrid.cs: default value for ShowHeaders is true. Fixed style for
  196. Header and Footer.
  197. * DataGridColumn.cs: added SetOwner method.
  198. * DataGridColumnCollection.cs: set the owner of the column when added.
  199. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  200. * BoundColumn.cs: typo.
  201. * DataGrid.cs: use 'as' instead of casting. Typo.
  202. * HyperLinkColumn.cs: call OnColumnChanged when any property change.
  203. Mono-stylized.
  204. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  205. * HyperLink.cs: fixes bug #36336.
  206. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  207. * DataList.cs: fixed IRepeatInfoUser.GetItemStyle.
  208. 2002-12-17 Gonzalo Paniagua Javier <[email protected]>
  209. * BaseValidator.cs: return an empty string in GetControlValidationValue
  210. when GetValue returned null.
  211. * CompareValidator.cs: fixed EvaluateIsValid.
  212. * RegularExpressionValidator.cs: fixed EvaluateIsValid.
  213. 2002-12-17 Gonzalo Paniagua Javier <[email protected]>
  214. * Xml.cs: use MapPathSecure to get the path of the document.
  215. 2002-12-13 Gonzalo Paniagua Javier <[email protected]>
  216. * DataList.cs: fixed header & footer.
  217. 2002-12-12 Gonzalo Paniagua Javier <[email protected]>
  218. * DataList.cs: for header and footer don't use data source.
  219. Instantiate in the DataListItem, not in the DataList.
  220. databind-template.aspx works now.
  221. 2002-11-21 Gonzalo Paniagua Javier <[email protected]>
  222. * BaseDataList.cs:
  223. (Render): call RenderContents (), not base.RenderContents ().
  224. * DataList.cs: style.
  225. But I still haven't found what i'm looking for....
  226. 2002-11-20 Gonzalo Paniagua Javier <[email protected]>
  227. * Calendar.cs: fixed loading/saving selected dates.
  228. * SelectedDatesCollection.cs: added internal function to get the
  229. underlying ArrayList.
  230. Calendar navigation works again. Selecting dates too.
  231. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  232. * DataList.cs: added a few attributes and fixed infinite recursion.
  233. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  234. * ListItemCollection.cs: fixed LoadViewState.
  235. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  236. * TableItemStyle.cs: TypeDescriptor.GetConverter seems to fail.
  237. Commented out some code until it works.
  238. 2002-10-29 Gaurav Vaish <[email protected]>
  239. * BaseCompareValidator.cs - Fixed operator bug in
  240. Compare(string, string, ...)
  241. * CompareValidator.cs - EvaluateIsValid() : Implemented.
  242. 2002-10-28 Gaurav Vaish <[email protected]>
  243. * BoundColumn.cs - InitializeCell(TableCell, int, ListItemType)
  244. : Implemented.
  245. - All Properties : Now make use of ViewState.
  246. 2002-10-28 Gaurav Vaish <[email protected]>
  247. * BaseValidator.cs - Uncomment NotImplementedException.
  248. 2002-10-28 Gaurav Vaish <[email protected]>
  249. * BaseValidator.cs - Minor changes in TODO comments.
  250. 2002-10-28 Gaurav Vaish <[email protected]>
  251. * BaseValidator.cs - DetermineRenderUpLevel() : Uncomment
  252. the NotImplementedException being thrown.
  253. * DataGridPagerStyle.cs - Mode { set; } : Implemented.
  254. * DataGridLinkButton.cs - Added new class (private) : Implemented.
  255. * DataGrid.cs - InitializePager(DataGridItem, int,
  256. PagedDataSource) : Implemented.
  257. 2002-10-28 Gaurav Vaish <[email protected]>
  258. * DataList.cs - PrepareControlHierarchy() : Implemented.
  259. 2002-10-28 Gaurav Vaish <[email protected]>
  260. * DataList.cs - RenderContents(HtmlTextWriter) : Implemented.
  261. - GetItem(ListItemType, int) : Removed TODO.
  262. - CreateControlHierarchy(bool) : Implemented.
  263. - CreateItem(int, ListItemType) : Implemented.
  264. - CreateItem(int, ListItemType,
  265. bool, object) : Implemented.
  266. - InitializeItem(DataItem) : Implemented.
  267. * DataGrid.cs - CreateControlHierarchy(bool) : Bug fix.
  268. The ViewState["_!ItemCount"],
  269. ViewState["_!DataSource_ItemCount"]
  270. are shared by DataList and DataGrid, and hence
  271. should share the same name.
  272. - ResolveDataSource(object, string)
  273. : Removed. Use System.Web.UI.Utils.DataSourceHelper
  274. ::GetResolvedDataSource(object, string).
  275. 2002-09-12 Gonzalo Paniagua Javier <[email protected]>
  276. * DataGrid.cs: fixed compilation
  277. 2002-09-12 Gaurav Vaish <[email protected]>
  278. * PagedDataSource.cs - FirstIndexInPage : Fixed bug.
  279. * DataGrid.cs - CreateControlHierarchy(bool)
  280. : working towards completion.
  281. - ResolveDataSource(object, string)
  282. : stubbed new method
  283. - CreateItem(....)
  284. : stubbed new method
  285. Well. It's almost done.
  286. * DataGridTableInternal.cs
  287. - Added new internal class.
  288. 2002-08-28 Gaurav Vaish <[email protected]>
  289. * DataSourceInternal.cs - Added new class (internal).
  290. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  291. * FontUnit.cs:
  292. * HorizontalAlign.cs:
  293. * Unit.cs:
  294. * VerticalAlign.cs: fixes based on class status page.
  295. * HorizontalAlignConverter.cs: implemented.
  296. * VerticalAlignConverter.cs: implemented.
  297. * FontUnitConverter.cs: implemented GetStandardValues ().
  298. * WebColorConverter.cs: implemented ConvertFrom () and ConvertTo ().
  299. 2002-08-19 Gaurav Vaish <[email protected]>
  300. * DataGrid.cs - AutoCreateColumns: Bug fixes.
  301. 2002-08-19 Gaurav Vaish <[email protected]>
  302. * DataGrid.cs - AutoCreateColumns: completed, hopefully!
  303. 2002-08-19 Gaurav Vaish <[email protected]>
  304. * DataGrid.cs - Working on the undocumented protected
  305. method CreateColumnSet. AutoCreateColumns method
  306. stubbed. Left CreateControlHierarchy for the time
  307. being, looks like I'm going insane. ;-)
  308. 2002-08-19 Gaurav Vaish <[email protected]>
  309. * Button.cs - Steffen's OnCommand bug fix.
  310. 2002-08-12 Gaurav Vaish <[email protected]>
  311. * DataGrid.cs - Added protected method (skeleton)
  312. CreateColumnSet(PagedDataSource, bool)
  313. Still trying to know how will it be used
  314. and what for...
  315. 2002-08-10 Gonzalo Paniagua Javier <[email protected]>
  316. * PagedDataSource.cs: fixed compilation.
  317. 2002-08-08 Gaurav Vaish <[email protected]>
  318. * DataGrid.cs - Added private method
  319. CreatePagedDataSource
  320. - Started work on
  321. CreateControlHierarchy(bool)
  322. * PagedDataSource.cs - Bug fixed.
  323. CurrentPageIndex is writable.
  324. 2002-08-07 Gonzalo Paniagua Javier <[email protected]>
  325. * DataGrid.cs: fixed typo.
  326. * DataGridPagerStyle.cs: added IsPagerOnTop and IsPagerOnBottom.
  327. 2002-08-06 Gaurav Vaish <[email protected]>
  328. * DataGridColumn.cs - Added internal methods to get the
  329. various styles (needed in DataGrid.cs)
  330. * DataGrid.cs - Completed the method
  331. PrepareControlHierarchy()
  332. 2002-08-06 Gaurav Vaish <[email protected]>
  333. * DataGrid.cs - Wokring on PrepareControlHierarchy()
  334. - Added private method
  335. PrepareControlHierarchyForItem()
  336. 2002-08-05 Gaurav Vaish <[email protected]>
  337. * DataGrid.cs - Completed method
  338. OnBubbleEvent(object, EventArgs)
  339. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  340. * Xml.cs: implemented document/transform load.
  341. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  342. * Calendar.cs: added myself to the list of authors.
  343. * DropDownList.cs: fixed a few properties.
  344. * ListControl.cs: fixed SelectedIndex.
  345. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  346. * Calendar.cs: lots of fixes. Render days. Still left to persist
  347. selected days when changing month.
  348. * Unit.cs: fixed Percentage and Pixel.
  349. * WebControl.cs: a few properties are now using ControlStyle instead
  350. of ViewState to persist.
  351. 2002-07-28 Gonzalo Paniagua Javier <[email protected]>
  352. * BaseValidator.cs: it works now.
  353. * DataGridColumn.cs: added attribute and made it abstract.
  354. * RequiredFieldValidator.cs: fixed return value in EvaluateIsValid.
  355. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  356. * TextBox.cs: default for Wrap is true.
  357. (OnPreRender): don't save Text if there are no listeners on TextChanged.
  358. 2002-07-19 Gonzalo Paniagua Javier <[email protected]>
  359. * DropDownList.cs:
  360. (ToolTip): fixed.
  361. * ListItem.cs:
  362. (LoadViewState): fixed.
  363. * ListItemCollection.cs:
  364. (TrackViewState): use items instead of 'this' in foreach.
  365. * Style.cs:
  366. (LoadViewState): more checking of parameters.
  367. * WebControl.cs: implemented LoadViewState and SaveViewState.
  368. 2002-07-17 Gonzalo Paniagua Javier <[email protected]>
  369. * ListItem.cs: there was no code to unset the flags!!!
  370. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  371. * FontUnit.cs: use a hashtable for mapping size name to value.
  372. * HyperLink.cs: fixed a bug and a typo.
  373. * Unit.cs: some fixes to internal constructor.
  374. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  375. * ListControl.cs: fixed a couple of range checks.
  376. * WebControl.cs: MS lies! Not all WebControls must be rendered inside
  377. an HtmlForm (p.e., Label).
  378. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  379. * AdRotator.cs:
  380. * Button.cs:
  381. * Calendar.cs:
  382. * CheckBox.cs:
  383. * CheckBoxList.cs:
  384. * DataList.cs:
  385. * DropDownList.cs:
  386. * HyperLink.cs:
  387. * HyperLinkColumn.cs:
  388. * Image.cs:
  389. * ImageButton.cs:
  390. * Label.cs:
  391. * LinkButton.cs:
  392. * ListBox.cs:
  393. * Panel.cs:
  394. * PlaceHolder.cs:
  395. * RadioButton.cs:
  396. * RadioButtonList.cs:
  397. * Table.cs:
  398. * TableRow.cs:
  399. * TextBox.cs:
  400. * WebControl.cs: removed attributes added by mistake (i used
  401. GetCustomAttributes (true), d'oh!).
  402. * DataListItem.cs: implemented RenderItem.
  403. * Repeater.cs: implemented CreateItem and InitializeItem.
  404. 2002-07-08 Gonzalo Paniagua Javier <[email protected]>
  405. * BaseDataList.cs: a couple of fiex and added attributes.
  406. * DataGrid.cs: little fixes.
  407. 2002-07-07 Gonzalo Paniagua Javier <[email protected]>
  408. * CheckBoxList.cs:
  409. * DataGrid.cs:
  410. * DataList.cs:
  411. * DropDownList.cs:
  412. * ListBox.cs:
  413. * PlaceHolder.cs:
  414. * RadioButton.cs:
  415. * RadioButtonList.cs:
  416. * TableRow.cs:
  417. * WebControl.cs:
  418. * Xml.cs: forgot to add using System.ComponentModel.
  419. * BaseValidator.cs: use explicitly
  420. System.ComponentModel.AttributeCollection as there is another class
  421. with the same name under System.Web.UI.
  422. 2002-07-07 Gonzalo Paniagua Javier <[email protected]>
  423. * AdRotator.cs:
  424. * Button.cs:
  425. * Calendar.cs:
  426. * CheckBox.cs:
  427. * CheckBoxList.cs:
  428. * DataGrid.cs:
  429. * DataList.cs:
  430. * DropDownList.cs:
  431. * HyperLink.cs:
  432. * Image.cs:
  433. * ImageButton.cs:
  434. * Label.cs:
  435. * LinkButton.cs:
  436. * ListBox.cs:
  437. * Panel.cs:
  438. * PlaceHolder.cs:
  439. * RadioButton.cs:
  440. * RadioButtonList.cs:
  441. * Table.cs:
  442. * TableRow.cs:
  443. * TextBox.cs:
  444. * WebControl.cs:
  445. * Xml.cs: added/fixed all attributes used by xsp.
  446. * BaseValidator.cs: some fixes.
  447. 2002-07-06 Gonzalo Paniagua Javier <[email protected]>
  448. * Table.cs:
  449. (AddAttributesToRender): correctly default to border=1.
  450. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  451. * AdRotator.cs:
  452. (LoadAdFile): make the dictionary null after every iteration.
  453. * LinkButton.cs:
  454. * ListControl.cs:
  455. * ListItem.cs: fixed warnings.
  456. Mon Jul 1 16:23:15 CEST 2002 Paolo Molaro <[email protected]>
  457. * Style.cs, TableRow.cs, DataListItem.cs: fix compilation.
  458. 2002-06-30 Gonzalo Paniagua Javier <[email protected]>
  459. * DataGridColumn.cs:
  460. * DataGridPagerStyle.cs:
  461. * DataList.cs:
  462. * DataListItem.cs:
  463. * Image.cs:
  464. * LinkButton.cs:
  465. * ListControl.cs:
  466. * ListItem.cs:
  467. * ListItemCollection.cs:
  468. * Repeater.cs:
  469. * ServerValidateEventArgs.cs:
  470. * Style.cs:
  471. * TableRow.cs:
  472. * WebControl.cs:
  473. * Xml.cs: more class status page based changes.
  474. 2002-06-29 Gonzalo Paniagua Javier <[email protected]>
  475. * Button.cs:
  476. (.ctor): fixed to render the correct tag.
  477. (IPostBAckEventHandler.RaisePostBackEvent): fixed.
  478. 2002-06-24 Gonzalo Paniagua Javier <[email protected]>
  479. * WebControl.cs:
  480. (AddAttributesToRender): call Page.VerifyRenderingInServerForm. All
  481. WebControl derived classes should be rendered inside a HtmlForm.
  482. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  483. * Repeater.cs: implemented CreateControlHierarchy. Fixed some event
  484. processing methods.
  485. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  486. * RadioButtonList.cs: implemented IRepeatInfoUser.RenderItem.
  487. * RepeatInfo.cs: implemented DoHorizontalRendering.
  488. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  489. * System.Web.UI.WebControls/Repeater.cs:
  490. (Controls):
  491. (OnDataBinding): fixed stack overflow.
  492. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  493. * RadioButtonList.cs: implemented IRepeatInfoUser.RenderItem.
  494. * RepeatInfo.cs: implemented DoHorizontalRendering.
  495. 2002-06-18 Gonzalo Paniagua Javier <[email protected]>
  496. * WebControl.cs:
  497. (CopyBaseAttributes): copy Attributes and don't throw exception.
  498. 2002-06-18 Gonzalo Paniagua Javier <[email protected]>
  499. * ListBox.cs: mono-stylized.
  500. (AddAttributesToRender): call parent class method.
  501. 2002-06-17 Gonzalo Paniagua Javier <[email protected]>
  502. * Style.cs: fixed IsEmpty and Width.
  503. * Table.cs: mono-stylized.
  504. (TableRowControlCollection.AddAt): fixed.
  505. (AddAttributesToRender): fixed.
  506. * TableCell.cs: mono-stylized.
  507. (.ctor): use PreventAutoID.
  508. (AddAttributesToRender): fixed.
  509. (AddParsedSubObject): fixed.
  510. * TableRow.cs: mono-stylized. Added
  511. ParseChildren attribute.
  512. * TableStyle.cs:
  513. (get_GridLine): fixed.
  514. 2002-06-16 Gonzalo Paniagua Javier <[email protected]>
  515. * Panel.cs: fixed stack overflow.
  516. * Unit.cs: use Int32.Parse and Single.Parse instead of Int32Converter
  517. and SingleConverter.
  518. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  519. * RadioButton.cs: mono-stylized and some little fixes.
  520. * TextBox.cs: mono-stylized.
  521. (MaxLength): fixed typo.
  522. (AddAttributesToRender): don't render the text between the tags for
  523. SingleLine, use value attribute for it. Don't render the text for
  524. Password.
  525. (OnPreRender): don't throw exception and call base.OnPreRender.
  526. (Render): for MultiLine, render the text between the opening and
  527. closing tags encoded as HTML.
  528. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  529. * ImageButton.cs:
  530. (AddAttributesToRender): fixer another stack overflow.
  531. * WebControl.cs:
  532. (TagName): modified to use TagKey instead of tagKey as the property
  533. can be overriden.
  534. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  535. * LinkButton.cs: mono-stylized.
  536. (AddParsedSubObject):
  537. (RenderControls): little fixes.
  538. * WebControl.cs:
  539. (AddAttributesToRender): fixed usage of IEnumerator.
  540. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  541. * Literal.cs: beautified.
  542. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  543. * Label.cs: beautified and fixed a couple of 'classic' bugs.
  544. * WebControl.cs: use Span as default tag when no other provided in
  545. constructor. That is what MS renders.
  546. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  547. * Button.cs:
  548. (AddAttributesToRender): fixed (classic) stack overflow.
  549. * CheckBox.cs: mono-stylized.
  550. (AutoPostBack): fixed stack overflow.
  551. (Render): fixed alignment issues. Also set the For attribute always
  552. for the label.
  553. 2002-06-11 Gonzalo Paniagua Javier <[email protected]>
  554. * AdRotator.cs: GetData does not work as it should, but now it returns
  555. useful data (only the first ad in the file). Set the NavigateUrl
  556. property in the hyperlink if available.
  557. * HyperLink.cs: fixed constructor and a couple of stack overflows.
  558. * Image.cs: added an attribute and fixed stack overflow.
  559. * WebControl.cs:
  560. (RenderBeginTag): fixed.
  561. (TagName): don't call Enum.IsDefined twice.
  562. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  563. * WebControl.cs: added attributes PersistChildrenAttribute and
  564. ParseChildrenAttribute.
  565. 2002-05-24 Duncan Mak <[email protected]>
  566. * DataGridItem.cs (SetItemType): Changed function signature to
  567. match 1.0 spec.
  568. * ListItemCollection.cs (this): Changes the visibility level of
  569. the indexer.
  570. * Repeater.cs (OnItemCommand):
  571. (OnItemCreated):
  572. (OnItemDataBound): Added necessary casts.
  573. 2002-05-07 Duncan Mak <[email protected]>
  574. * Button.cs (AddAttributesToRender):
  575. * ImageButton.cs (AddAttributesToRender): Added a missing argument to the
  576. GetClientValidatedEvent method.
  577. 2002-03-27 Gaurav Vaish <[email protected]>
  578. * Removed extra methods, corrected access modifiers to several
  579. methods.
  580. 2002-03-26 Gaurav Vaish <[email protected]>
  581. * <SeveralFiles>.cs - Added some attributes
  582. * FontUnitConverter.cs - Added stubs for GetStandardValues*(..)
  583. methods. Will complete them later. Right now, busy with
  584. the attributes part.
  585. * RepeaterItem.cs - Completed.
  586. Oh God! Mercy! I will die applying attributes. I look at the missing
  587. part in the class-status - daemon! Kyrie eleison!
  588. 2002-03-19 Gaurav Vaish <[email protected]>
  589. Some bug fixes
  590. * AdRotator.cs - Added definition for Font.
  591. * BaseCompareValidator.cs - Added definition for Controls.
  592. * Calendar.cs - SelectMonthText definition corrected.
  593. * DataList.cs - Added definition for SeparatorTemplate.
  594. * BorderStyle.cs - Namespace correction. It belongs not to UI,
  595. but to UI.WebControls.
  596. 2002-03-17 Gaurav Vaish <[email protected]>
  597. Finally, I have made it. Today I did a second build for the
  598. System.Web assembly. It compiled 195 classes today.
  599. I am waiting eagerly for the runtime to come up so that the objects
  600. may be tested to their last levels. Several of the methods are still
  601. under the tag of "TODO" throwing NotImplementedException. Well, I
  602. hope to remove them soon, but how far is this soon - even I don't
  603. know, though I am happy to make the build a success even before
  604. the vacations to come.
  605. 2002-03-07 Gaurav Vaish <[email protected]>
  606. Yesterday and today I tried to do some building of the aseembly,
  607. but was dumped with uncoutably infinite errors. ;-)
  608. I have put the copies of the recent errors on my home page, want
  609. to have a look at them? See:
  610. http://mastergaurav.virtualave.net/mono/
  611. I don't know what to do with these errors. Oh! The buggy me! How
  612. will I overcome myself. Hopefully, by when my vacations over, I
  613. should have made a repository where the build will not fail.
  614. 2002-03-05 Gaurav Vaish <[email protected]>
  615. I am now going to do a build that will include the
  616. System.Web.UI.WebControls namespace. Hoping that I will make it
  617. soon. My exams are coming near and I have to pack up soon.
  618. 2002-03-04 Gaurav Vaish <[email protected]>
  619. Comments:
  620. And with this, ie, today's work, all the objects mentioned in the
  621. namespace appear in the implementation. But it may not be worth
  622. trying to go for a build because of dependence of several of the
  623. internal methods that may clash with already available assembly
  624. System.Web.
  625. Also, the classes lack possible attributes, like those informing
  626. about child-controls etc. But I have to first create the attribute
  627. classes before I attach the attributes to the classes.
  628. * CustomValidator.cs - Completed. In process realized that
  629. I have to complete / rejuvinate BaseValidator class.
  630. * BaseValidator.cs - Complete rejuvination. Completed 80%
  631. of the job. All that is left is Render(HtmlTextWriter),
  632. DetermineRenderUplevel(), RegisterValidatorCommonScript()
  633. RegisterValidatorDeclaration()
  634. * DataGridPagerStyle.cs - Completed. That adds one more missle
  635. in my artillery.
  636. * DataKeyCollection.cs - Completed. Petty small.
  637. * Repeater.cs - Work started off. This is a quite
  638. heavy class. Hooh!
  639. * DataGridItemEventArgs.cs,
  640. * DataGridShortCommandEventArgs.cs,
  641. * DataListItemEventArgs.cs,
  642. * MonthChangedEventArgs.cs,
  643. * RepeaterItemEventArgs.cs,
  644. * ServerValidateEventArgs.cs,
  645. * DataGridPageChangedEventArgs.cs
  646. - Damn, I marked them "*", while they
  647. did not exist.
  648. * Repeater.cs - Done all except for an undocumented
  649. method CreateControlHierarchy(bool). Though the method
  650. is quite clear by its name, but it will take some time
  651. for me to come with some material to flush in.
  652. 2002-03-03 Gaurav Vaish <[email protected]>
  653. * SelectedDatesCollection.cs - Completed.
  654. * PagedDataSource.cs - Completed. Pathetically nice class.
  655. * RegularExpressionValidator.cs
  656. - Completed. Ridiculously small and
  657. annoyinglyc crazy-driving class, basically the method
  658. EvaluateIsValid().
  659. * RangeValidator.cs - Completed.
  660. * DataGridColumn.cs - Completed.
  661. * EditCommandColumn.cs - All is complete except for the
  662. InitializeCell(TableCell, int, ListItemType) method.
  663. * DataListItem.cs - All done except for a longish method
  664. RenderItem(HtmlTextWriter, bool, bool)
  665. 2002-03-02 Gaurav Vaish <[email protected]>
  666. * RepeaterItemCollection.cs - Completed.
  667. I love *Collection classes. I am planning to make a
  668. program that will generate a *Collection class. It's so
  669. simple and the same. ;-)
  670. * DataGridColumnCollection.cs - Completed.
  671. ... except probably for *ColumnCollection classes, where
  672. you have to put in some more effort. Still, these class
  673. generation can be automated.
  674. * DataListItemCollection.cs - Completed.
  675. See, how easily, in less than a quarter of a minute, I
  676. completed this class - manually. Copy-Paste/Cut-Replace.
  677. 2002-02-21 Gaurav Vaish <[email protected]>
  678. * DataGrid.cs - Following methods implemented:
  679. TrackViewState(), LoadViewState(object), SaveViewState(),
  680. On* -- The event raisers.
  681. OnBubbleEvent(object, EventArgs) is still incomplete.
  682. * DataGridItem.cs - Initial Implementation
  683. * DataGridItemCollection.cs - Completed.
  684. 2002-02-08 Gaurav Vaish <[email protected]>
  685. * DataGrid.cs - Initial Implementation. Worked
  686. primarily with some properties.
  687. 2002-02-07 Gaurav Vaish <[email protected]>
  688. * ListBox.cs - Completed. Implemented
  689. LoadPostData(string, NameValueCollection)
  690. * RequiredFieldValidator.cs - Completed. Pretty simple class.
  691. 2002-02-06 Gaurav Vaish <[email protected]>
  692. * ListBox.cs - Implemented the following:
  693. RaisePostDataChangedEvent()
  694. 2002-02-02 Gaurav Vaish <[email protected]>
  695. * ListBox.cs - Supports the following properties:
  696. BorderColor, BorderStyle, BorderWidth, Rows, SelectionMode,
  697. ToolTip.
  698. Methods:
  699. AddAttributesToRender(HtmlTextWriter), OnPreRender(EventArgs),
  700. RenderContents(HtmlTextWriter)
  701. 2002-02-01 Gaurav Vaish <[email protected]>
  702. * TargetConverter.cs - Completed
  703. * TemplateColumn.cs - Completed
  704. * DataList.cs - Corrected the get-er methods for the
  705. *Style objects. Corrected the get/set-er methods for ViewState
  706. related objects.
  707. Addded support for properties:
  708. GridLines, HeaderStyle, HeaderTemplate, ItemStyle, ItemTemplate,
  709. RepeatColumns, RepeatDirection, RepeatLayout, SelectedIndex,
  710. SelectedItem, SelectedItemStyle, SelectedItemTemplate,
  711. SeparatorStyle, SeparatorItemTemplate.
  712. Events:
  713. CancelCommand, DeleteCommand, EditCommand, ItemCommand,
  714. ItemCreated, ItemDataBound, UpdateCommand.
  715. Methods:
  716. CreateControlStyle(), LoadViewState(object),
  717. SaveViewState(), TrackViewState
  718. Event handlers:
  719. OnBubbleEvent, OnCancelCommand, OnDeleteCommand,
  720. OnEditCommand, OnItemCommand, OnItemCreated,
  721. OnItemDataBound, OnUpdateCommand
  722. Added dummy methods for some undocumented methods:
  723. CreateControlHierarchy(bool), CreateItem(int, ListItemType),
  724. CreateItem(int, ListItemType, bool, object),
  725. PrepareControlHierarchy(), InitializeItem(DataListItem)
  726. * ListBox.cs - Started working.
  727. 2002-01-31 Gaurav Vaish <[email protected]>
  728. * RepeaterInfo.cs - Initial Implementation. Done all
  729. except for RepeatDirection.Vertical
  730. * TableStyle.cs - Completed
  731. 2002-01-30 Gaurav Vaish <[email protected]>
  732. * DropDownList.cs - Completed
  733. * ListItemCollection.cs - Added method FindByValueInternal to
  734. assist in the derived classes.
  735. Discovered bug in FindByValue. Removed
  736. * UnitConverter.cs - Completed
  737. * PlaceHolder.cs - What can be simpler than this?
  738. * PlaceHolderControlBuilder.cs
  739. - Uh! Damn cool one.
  740. * RadioButtonList.cs - Initial Implementation. All is done
  741. except for the implementation of
  742. method IRepeatInfoUser.RenderItem(...)
  743. * ValidatedControlConverter.cs
  744. ^^^^^^^^^^^^^^^^^^^^^^^^^ - Looks complete. Doubtful though !!
  745. * ValidationSummary.cs - Initial Implementation.
  746. * WebColorConverter.cs - Initial Implementation
  747. 2002-01-27 Gaurav Vaish <[email protected]>
  748. * FontNamesConverter.cs - Completed
  749. * FontUnitConverter.cs - Partial Implementation
  750. * ListItemControlBuilder.cs - Completed
  751. 2002-01-27 Gaurav Vaish <[email protected]>
  752. * TextBox.cs - All done except *Render* methods
  753. * TextBoxControlBuilder.cs - Completed
  754. * Xml.cs - Partial Implementation
  755. 2002-01-26 Gaurav Vaish <[email protected]>
  756. * RadioButton.cs - Completed
  757. * TextBox.cs - Partial Implementation
  758. 2002-01-25 Gaurav Vaish <[email protected]>
  759. * Panel.cs - Completed
  760. * TableItemStyle.cs - Completed
  761. 2002-01-18 Gaurav Vaish <[email protected]>
  762. * TableCellCollection.cs - Completed
  763. * TableRowCollection.cs - Completed
  764. * TableHeaderCell.cs - Completed
  765. * TableRow.cs - Completed
  766. 2002-01-09 Gaurav Vaish <[email protected]>
  767. * TableCellControlBuilder.cs - Completed
  768. * Table.cs - Completed
  769. * TableCell.cs - Completed
  770. 2002-01-07 Gaurav Vaish <[email protected]>
  771. * CheckBoxList.cs - Completed
  772. * ButtonColumn.cs - Completed
  773. * Button.cs - Completed
  774. 2001-12-28 Gaurav Vaish <[email protected]>
  775. * HyperLink.cs - Completed
  776. * Image.cs - Completed
  777. * ImageButton.cs - Completed
  778. * Label.cs - Completed
  779. * LabelControlBuilder.cs - Completed
  780. * LinkButton.cs - Completed
  781. * LinkButtonControlBuilder.cs - Completed
  782. * Literal.cs - Completed
  783. * LieteralControlBuilder.cs - Completed
  784. * FontUnit.cs - Completed
  785. 2001-12-27 Gaurav Vaish <[email protected]>
  786. * Calendar.cs - Completed the functions of Render*,
  787. ViewStates (Track/View/Save),
  788. RaisePostBackEvent.
  789. Left: RenderAllDays (partially)
  790. 2001-12-21 Gaurav Vaish <[email protected]>
  791. * Calendar.cs - Added some more functions
  792. * Style.cs - Completed
  793. * ListItem.cs - Completed
  794. * ListItemCollection.cs - Completed
  795. Made the first successful build of System.Web.dll that included
  796. System.Web.UI.WebControls!
  797. 2001-12-20 Gaurav Vaish <[email protected]>
  798. FontInfo.cs - Complete revamp. Completed
  799. 2001-12-19 Gaurav Vaish <[email protected]>
  800. ListItemCollection.cs - Completed
  801. ListItem.cs - Initial Implementation
  802. Style.cs - Initial Implementation
  803. Right now I am in a total mood to do a successful build. Creating so many
  804. classes, completing classes in System.Web System.Web.UI namespaces.
  805. 2001-12-18 Gaurav Vaish <[email protected]>
  806. TODO - Properly added
  807. CheckBox.cs - Completed
  808. BaseDataList.cs - Completed
  809. DayRenderEventArgs.cs - Completed
  810. RepeaterItem.cs - Initial implementation
  811. 2001-12-17 Gaurav Vaish <[email protected]>
  812. BaseCompareValidator.cs - Completed
  813. AdRotator.cs - Completed
  814. 2001-12-15 Gaurav Vaish <[email protected]>
  815. CommandEventArgs.cs - Completed
  816. DataGridCommandEventArgs.cs - Completed
  817. RepeaterCommandEventArgs.cs - Completed
  818. DataListCommandEventArgs.cs - Completed
  819. CompareValidator.cs - Partial Implementation
  820. 2001-12-02 Gaurav Vaish <[email protected]>
  821. CheckBoxList.cs - Partial Implementation.
  822. All except "Render"
  823. 2001-12-01 Gaurav Vaish <[email protected]>
  824. ListControl.cs - Completed
  825. 2001-11-30 Gaurav Vaish <[email protected]>
  826. CheckBox.cs - Completed
  827. ListControl.cs - Initial Implementation
  828. CheckBoxList.cs - Started with it, but first needed
  829. ListControl. Left it.
  830. 2001-11-29 Gaurav Vaish <[email protected]>
  831. CalendarDay.cs - Making a note that this
  832. has been implemented
  833. Calendar.cs - Making a note that have made some changes.
  834. Unimplmented functions throw
  835. NotImplementedException
  836. CheckBox.cs - Can now "Render" and "LoadPostData"
  837. 2001-11-08 Gaurav Vaish <[email protected]>
  838. WebControl.cs - Total Revamp, Partial Implementation
  839. AdRotator.cs - Able to load files
  840. AdCreatedEventArgs.cs - Implemented
  841. 2001-11-05 Gaurav Vaish <[email protected]>
  842. Calendar.cs - Initial Implementation
  843. ButtonColumn.cs - Initial Implementation
  844. Button.cs - Initial Implementation
  845. BoundColumn.cs - Initial Implementation
  846. BaseCompareValidator.cs - Minor Changes
  847. DataList.cs, BaseValidator.cs, BaseDataList.cs
  848. - Added more functions, other changes
  849. 2001-10-28 Gaurav Vaish <[email protected]>
  850. WebControl.cs - Initial Implementation
  851. DataList.cs - Initial Implementation
  852. BaseValidator.cs - Initial Implementation
  853. BaseDataList.cs - Initial Implementation
  854. 2001-10-27 Gaurav Vaish <[email protected]>
  855. AdCreatedEventArgs.cs - Initial Implementation
  856. AdCratedEventHandler.cs - Implemented
  857. AdRotator.cs - Initial Implementation
  858. BorderStyle.cs - Implemented
  859. ButtonColumnStyle.cs - Implemented
  860. CalendarSelectionMode.cs - Implemented
  861. DayNameFormat.cs - Implemented
  862. FirstDayOfWeek - Implemented
  863. FontInfo.cs - Partial Implementation
  864. FontSize.cs - Implemented
  865. GridLines.cs - Implemented
  866. HorizontalAlign.cs - Implemented
  867. HyperLink.cs - Initial Implementation
  868. ImageAlign.cs - Implemented
  869. IRepeatInfoUser.cs - Implemented
  870. ListItemType.cs - Implemented
  871. ListSelectionMode.cs - Implemented
  872. NextPrevFormat.cs - Implemented
  873. PagerMode.cs - Implemented
  874. PagerPosition.cs - Implemented
  875. RepeatDirection.cs - Implemented
  876. RepeatLayout.cs - Implemented
  877. TextAlign.cs - Implemented
  878. TextBoxMode.cs - Implemented
  879. TitleFormat.cs - Implemented
  880. UnitType.cs - Implemented
  881. ValidationCompareOperator.cs
  882. - Implemented
  883. ValidationDataType.cs - Implemented
  884. ValidationSummaryDisplayMode.cs
  885. - Implemented
  886. ValidatorDisplay.cs - Implemented
  887. VerticalAlign.cs - Implemented
  888. // File Created 2001-11-13