ChangeLog 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349
  1. 2004-11-29 Sanjay Gupta <[email protected]>
  2. * DataControlField.cs:
  3. * DataControlFieldCell.cs: Initial implementation.
  4. 2004-11-26 Lluis Sanchez Gual <[email protected]>
  5. * TreeNodeBindingCollection.cs: Implemented.
  6. * TreeNodeBinding.cs: Implemented.
  7. * TreeNode.cs: Added support for data binding.
  8. * TreeView_Default_Collapse.gif, TreeView_Default_Expand.gif
  9. TreeView_Default_NoExpand.gif: Moved to resources directory.
  10. * ListControl.cs: Fixed api.
  11. * XmlHierarchicalEnumerable.cs: Made internal.
  12. * DataBoundControl.cs: Modified api to match latest ms.net.
  13. * TreeView.js: New javascript file to support TreeView in the client.
  14. * XmlDataSource.cs: Added missing attributes.
  15. * HierarchicalDataBoundControl.cs: Mostly implemented.
  16. * BaseDataBoundControl.cs: Mostly implemented.
  17. * XmlHierarchyData.cs: Made internal.
  18. * TreeView.cs: Mostly implemented. The major missing feature is
  19. client side tree population.
  20. 2004-11-25 Sanjay Gupta <[email protected]>
  21. * BaseDataList.cs:
  22. * DataBountControl.cs:
  23. * Repeater.cs: Added SelectArguments property and updated.
  24. * SiteMapDataSourceView.cs:
  25. * SqlDataSourceView.cs:
  26. * XmlDataSourceView.cs: Removed extra method, which was there to
  27. keep things compiling.
  28. 2004-11-23 Lluis Sanchez Gual <[email protected]>
  29. * TreeNodeBindingCollection.cs, TreeNodeBinding.cs, TreeNode.cs,
  30. TreeNodeCollection.cs, TreeNodeStyleCollection.cs, TreeNodeStyle.cs,
  31. TreeView.cs: Initial implementation.
  32. * DataBoundControl.cs: Set the correct base class.
  33. * HierarchicalDataBoundControl.cs, BaseDataBoundControl.cs: Created stub.
  34. * TreeNodeSelectAction.cs: Formatting.
  35. * TreeView_Default_Collapse.gif, TreeView_Default_Expand.gif,
  36. TreeView_Default_NoExpand.gif: TreeView images.
  37. 2004-11-22 Sanjay Gupta <[email protected]>
  38. * SqlDataSourceView.cs: Updated methods and added one property.
  39. 2004-11-19 Sanjay Gupta <[email protected]>
  40. * AccessDataSource.cs:
  41. * SqlDataSourceView.cs: Implemented CreateDataSourceView () method.
  42. 2004-11-19 Sanjay Gupta <[email protected]>
  43. * SqlDataSource.cs: Updated call to constructor of SqlDataSourceView.cs.
  44. * SqlDataSourceView.cs: Updated constructor.
  45. 2004-11-19 Sanjay Gupta <[email protected]>
  46. * AccessDataSourceView.cs: Added new class.
  47. 2004-11-19 Sanjay Gupta <[email protected]>
  48. * SqlDataSourceView.cs: Corrected exception handling in
  49. ExecuteSelect method.
  50. 2004-11-18 Lluis Sanchez Gual <[email protected]>
  51. * SiteMapHierarchicalDataSourceView.cs, SiteMapDataSource.cs: New files.
  52. * SiteMapDataSourceView.cs: Minor fix.
  53. 2004-11-18 Sanjay Gupta <[email protected]>
  54. * SqlDataSourceView.cs: Updated ExecuteSelect method.
  55. 2004-11-18 Sanjay Gupta <[email protected]>
  56. * SqlDataSource.cs: Corrected Select method.
  57. 2004-11-18 Sanjay Gupta <[email protected]>
  58. * SqlDataSource.cs: Updated Select method definition.
  59. * SqlDataSourceStatusEventArgs.cs: Updated class.
  60. 2004-11-15 Lluis Sanchez Gual <[email protected]>
  61. * SqlDataSourceView.cs: Removed implementation of Events (it is inherited
  62. from DataSourceView.cs).
  63. 2004-11-10 Raja R Harinath <[email protected]>
  64. * SqlDataSourceView.cs (Select): Add 'override' to make it compile.
  65. 2004-11-05 Sanjay Gupta <[email protected]>
  66. * SqlDataSource.cs: Corrected method calls.
  67. * SqlDataSourceView.cs: Partial implementation of few methods.
  68. 2004-10-25 Gonzalo Paniagua Javier <[email protected]>
  69. * ListItemCollection.cs: fixed bug when indexing changed elements in
  70. LoadViewState. Patch from Alois Bělaška.
  71. 2004-10-20 Sanjay Gupta <[email protected]>
  72. * SiteMapDataSourceView.cs:
  73. * SqlDataSourceView.cs:
  74. * XmlDataSourceView.cs: Cosmetic changes because of modifications in
  75. base class, DataSourceView. Changes are to keep things compiling.
  76. 2004-10-19 Sanjay Gupta <[email protected]>
  77. * SiteMapDataSourceView.cs: Corrected class definition and updated.
  78. * XmlHierarchicalDataSourceView.cs: Modified according to changes in
  79. base class.
  80. 2004-10-14 Sanjay Gupta <[email protected]>
  81. * AdRotator.cs: Updated.
  82. 2004-10-12 Sanjay Gupta <[email protected]>
  83. * AccessDataSource.cs: Updated.
  84. 2004-10-08 Sanjay Gupta <[email protected]>
  85. * ValidatedControlConverter.cs: Updated.
  86. 2004-10-08 Sanjay Gupta <[email protected]>
  87. * AssociatedControlConverter.cs: Implemented.
  88. 2004-10-08 Sanjay Gupta <[email protected]>
  89. * ControlIDConverter.cs: Initial implementation.
  90. 2004-10-04 Sanjay Gupta <[email protected]>
  91. * IButtonControl.cs: Corrected property name.
  92. 2004-10-04 Sanjay Gupta <[email protected]>
  93. * ParameterCollection.cs: Updated.
  94. 2004-10-04 Sanjay Gupta <[email protected]>
  95. * Parameter.cs: Updated and completed implementation.
  96. 2004-10-01 Sanjay Gupta <[email protected]>
  97. * ParameterCollection.cs: Resolved warnings, "Unreachable code detected"
  98. while compilation.
  99. 2004-10-01 Sanjay Gupta <[email protected]>
  100. * AccessDataSource.cs: Initial implementation.
  101. 2004-09-30 Sanjay Gupta <[email protected]>
  102. * DataControlRowState.cs:
  103. * ScrollBars.cs:
  104. * TreeNodeTypes.cs: Added attribute.
  105. * DataControlRowType.cs:
  106. * HotSpotMode.cs:
  107. * SortDirection.cs: Corrected enumeration values.
  108. * TableRowSection.cs: Added new enumeration.
  109. * ObjectDataSourceStatusEventHandler.cs: Corrected method name.
  110. 2004-09-28 Gonzalo Paniagua Javier <[email protected]>
  111. * TableStyle.cs: don't render empty 'rules' attribute (again).
  112. 2004-09-21 Sanjay Gupta <[email protected]>
  113. * FormViewUpdatedEventArgs.cs: Spelling mistake.
  114. 2004-09-14 Sanjay Gupta <[email protected]>
  115. * Literal.cs: Added new method Focus().
  116. 2004-09-12 Gonzalo Paniagua Javier <[email protected]>
  117. * RadioButton.cs: fix GroupName when the control is inside a
  118. NamingContainer different from Page. Closes bug #65586.
  119. 2004-09-07 Sanjay Gupta <[email protected]>
  120. * Localize.cs: Added new class.
  121. 2004-09-03 Gaurav Vaish <gvaish_mono AT lycos.com>
  122. * CompositeControl.cs : Completed
  123. * Login.cs : Initial implementation.
  124. 2004-09-01 Gonzalo Paniagua Javier <[email protected]>
  125. * Xml.cs: fixed get_DocumentContent (it was returning "" always!) and
  126. don't call MapPathSecure on the content itself.
  127. * XmlBuilder.cs: handle XML documents written inside asp:xml. The
  128. document is checked at parse time and will be checked again at run time.
  129. Fixes bug #63828.
  130. 2004-08-31 Sanjay Gupta <[email protected]>
  131. * AuthenticateEventHandler.cs:
  132. * CreateUserErrorEventArgs.cs:
  133. * CreateUserErrorEventHandler.cs:
  134. * DetailsViewCommandEventHandler.cs:
  135. * DetailsViewDeleteEventArgs.cs:
  136. * DetailsViewDeleteEventHandler.cs:
  137. * DetailsViewDeletedEventArgs.cs:
  138. * DetailsViewDeletedEventHandler.cs:
  139. * DetailsViewInsertEventArgs.cs:
  140. * DetailsViewInsertEventHandler.cs:
  141. * DetailsViewInsertedEventArgs.cs:
  142. * DetailsViewInsertedEventHandler.cs:
  143. * DetailsViewModeEventArgs.cs:
  144. * DetailsViewModeEventHandler.cs:
  145. * DetailsViewPageEventHandler.cs:
  146. * DetailsViewUpdateEventArgs.cs:
  147. * DetailsViewUpdateEventHandler.cs:
  148. * DetailsViewUpdatedEventArgs.cs:
  149. * DetailsViewUpdatedEventHandler.cs:
  150. * FormViewCommandEventHandler.cs:
  151. * FormViewDeleteEventArgs.cs:
  152. * FormViewDeleteEventHandler.cs:
  153. * FormViewDeletedEventArgs.cs:
  154. * FormViewDeletedEventHandler.cs:
  155. * FormViewInsertEventArgs.cs:
  156. * FormViewInsertEventHandler.cs:
  157. * FormViewInsertedEventArgs.cs:
  158. * FormViewInsertedEventHandler.cs:
  159. * FormViewModeEventHandler.cs:
  160. * FormViewPageEventHandler.cs:
  161. * FormViewUpdateEventArgs.cs:
  162. * FormViewUpdateEventHandler.cs:
  163. * FormViewUpdatedEventArgs.cs:
  164. * FormViewUpdatedEventHandler.cs:
  165. * GridViewCancelEditEventArgs.cs:
  166. * GridViewCancelEditEventHandler.cs:
  167. * GridViewCommandEventHandler.cs:
  168. * GridViewDeleteEventArgs.cs:
  169. * GridViewDeleteEventHandler.cs:
  170. * GridViewDeletedEventArgs.cs:
  171. * GridViewDeletedEventHandler.cs:
  172. * GridViewEditEventHandler.cs:
  173. * GridViewPageEventHandler.cs:
  174. * GridViewRowEventHandler.cs:
  175. * GridViewSelectEventHandler.cs:
  176. * GridViewSortEventArgs.cs:
  177. * GridViewSortEventHandler.cs:
  178. * GridViewUpdateEventArgs.cs:
  179. * GridViewUpdateEventHandler.cs:
  180. * GridViewUpdatedEventArgs.cs:
  181. * GridViewUpdatedEventHandler.cs:
  182. * ImageMapEventHandler.cs:
  183. * MailMessageEventHandler.cs:
  184. * MenuEventHandler.cs:
  185. * ObjectDataSourceDisposingEventHandler.cs:
  186. * ObjectDataSourceEventHandler.cs:
  187. * ObjectDataSourceMethodEventArgs.cs:
  188. * ObjectDataSourceMethodEventHandler.cs:
  189. * ObjectDataSourceSelectingEventArgs.cs:
  190. * ObjectDataSourceSelectingEventHandler.cs:
  191. * ObjectDataSourceStatusEventArgs.cs:
  192. * ObjectDataSourceStatusEventHandler.cs:
  193. * SendMailErrorEventHandler.cs:
  194. * SiteMapNodeItemEventHandler.cs:
  195. * SqlDataSourceSelectingEventArgs.cs:
  196. * SqlDataSourceSelectingEventHandler.cs:
  197. * TreeNodeEventHandler.cs:
  198. * WizardNavigationEventArgs.cs:
  199. * WizardNavigationEventHandler.cs: Minor modifications, compiler error
  200. corrections and removing "sealed" access specifier from *EventHandler.cs
  201. 2004-08-18 Sanjay Gupta <[email protected]>
  202. * Literal.cs: Added new attributes and property for .Net 2.0
  203. 2004-08-13 Sanjay Gupta <[email protected]>
  204. * GridViewDeleteEventArgs.cs: Removed extra code.
  205. 2004-08-12 Sanjay Gupta <[email protected]>
  206. * SendMailErrorEventArgs.cs:
  207. * SendMailErrorEventHandler.cs:
  208. * SiteMapNodeItemEventArgs.cs:
  209. * SiteMapNodeItemEventHandler.cs:
  210. * SqlDataSourceSelectingEventArgs.cs:
  211. * SqlDataSourceSelectingEventHandler.cs:
  212. * TreeNodeEventArgs.cs:
  213. * TreeNodeEventHandler.cs:
  214. * WizardNavigationEventArgs.cs:
  215. * WizardNavigationEventHandler.cs: Added new delegates.
  216. 2004-08-11 Sanjay Gupta <[email protected]>
  217. * ImageMapEventArgs.cs:
  218. * ImageMapEventHandler.cs:
  219. * MailMessageEventArgs.cs:
  220. * MailMessageEventHandler.cs:
  221. * MenuEventArgs.cs:
  222. * MenuEventHandler.cs:
  223. * ObjectDataSourceDisposingEventArgs.cs:
  224. * ObjectDataSourceDisposingEventHandler.cs:
  225. * ObjectDataSourceEventArgs.cs:
  226. * ObjectDataSourceEventHandler.cs:
  227. * ObjectDataSourceMethodEventArgs.cs:
  228. * ObjectDataSourceMethodEventHandler.cs:
  229. * ObjectDataSourceSelectingEventArgs.cs:
  230. * ObjectDataSourceSelectingEventHandler.cs:
  231. * ObjectDataSourceStatusEventArgs.cs:
  232. * ObjectDataSourceStatusEventHandler.cs: Added new delegates.
  233. 2004-08-11 Sanjay Gupta <[email protected]>
  234. * DetailsViewCommandEventArgs.cs:
  235. * FormViewCommandEventArgs.cs:
  236. * GridViewCommandEventArgs.cs: Corrected constructor.
  237. 2004-08-11 Sanjay Gupta <[email protected]>
  238. * GridViewCancelEditEventArgs.cs:
  239. * GridViewCancelEditEventHandler.cs:
  240. * GridViewCommandEventArgs.cs:
  241. * GridViewCommandEventHandler.cs:
  242. * GridViewDeletedEventArgs.cs:
  243. * GridViewDeletedEventHandler.cs:
  244. * GridViewDeleteEventArgs.cs:
  245. * GridViewDeleteEventHandler.cs:
  246. * GridViewEditEventArgs.cs:
  247. * GridViewEditEventHandler.cs:
  248. * GridViewPageEventArgs.cs:
  249. * GridViewPageEventHandler.cs:
  250. * GridViewRowEventArgs.cs:
  251. * GridViewRowEventHandler.cs:
  252. * GridViewSelectEventArgs.cs:
  253. * GridViewSelectEventHandler.cs:
  254. * GridViewSortEventArgs.cs:
  255. * GridViewSortEventHandler.cs:
  256. * GridViewUpdatedEventArgs.cs:
  257. * GridViewUpdatedEventHandler.cs:
  258. * GridViewUpdateEventArgs.cs:
  259. * GridViewUpdateEventHandler.cs: Added new delegates.
  260. 2004-08-11 Sanjay Gupta <[email protected]>
  261. * FormViewUpdatedEventArgs.cs: Corrected constructor.
  262. 2004-08-11 Sanjay Gupta <[email protected]>
  263. * FormViewCommandEventArgs.cs: Corrected name of class.
  264. 2004-08-10 Gonzalo Paniagua Javier <[email protected]>
  265. * Xml.cs: use MapPath in DocumentSource and documentContent. Fixes
  266. bug #62726.
  267. 2004-08-10 Sanjay Gupta <[email protected]>
  268. * FormViewCommandEventArgs.cs:
  269. * FormViewCommandEventHandler.cs:
  270. * FormViewDeletedEventArgs.cs:
  271. * FormViewDeletedEventHandler.cs:
  272. * FormViewDeleteEventArgs.cs:
  273. * FormViewDeleteEventHandler.cs:
  274. * FormViewInsertedEventArgs.cs:
  275. * FormViewInsertedEventHandler.cs:
  276. * FormViewInsertEventArgs.cs:
  277. * FormViewInsertEventHandler.cs:
  278. * FormViewModeEventArgs.cs:
  279. * FormViewModeEventHandler.cs:
  280. * FormViewPageEventArgs.cs:
  281. * FormViewPageEventHandler.cs:
  282. * FormViewUpdatedEventArgs.cs:
  283. * FormViewUpdatedEventHandler.cs:
  284. * FormViewUpdateEventArgs.cs:
  285. * FormViewUpdateEventHandler.cs: Added new delegates.
  286. 2004-08-10 Sanjay Gupta <[email protected]>
  287. * DetailsViewCommandEventArgs.cs:
  288. * DetailsViewCommandEventHandler.cs:
  289. * DetailsViewDeletedEventArgs.cs:
  290. * DetailsViewDeletedEventHandler.cs:
  291. * DetailsViewDeleteEventArgs.cs:
  292. * DetailsViewDeleteEventHandler.cs:
  293. * DetailsViewInsertedEventArgs.cs:
  294. * DetailsViewInsertedEventHandler.cs:
  295. * DetailsViewInsertEventArgs.cs:
  296. * DetailsViewInsertEventHandler.cs:
  297. * DetailsViewModeEventArgs.cs:
  298. * DetailsViewModeEventHandler.cs:
  299. * DetailsViewPageEventArgs.cs:
  300. * DetailsViewPageEventHandler.cs:
  301. * DetailsViewUpdatedEventArgs.cs:
  302. * DetailsViewUpdatedEventHandler.cs:
  303. * DetailsViewUpdateEventArgs.cs:
  304. * DetailsViewUpdateEventHandler.cs: Added new delegates.
  305. 2004-08-09 Sanjay Gupta <[email protected]>
  306. * AuthenticateEventArgs.cs:
  307. * AuthenticateEventHandler.cs:
  308. * CreateUserErrorEventArgs.cs:
  309. * CreateUserErrorEventHandler.cs: Added new delegates.
  310. 2004-08-05 Sanjay Gupta <[email protected]>
  311. * IButtonControl.cs:
  312. * ICallbackContainer.cs:
  313. * ICompositeControlDesignerAccessor.cs:
  314. * IPostBackContainer.cs: Added new interfaces.
  315. 2004-08-03 Sanjay Gupta <[email protected]>
  316. * AdType.cs:
  317. * AutoCompleteType.cs:
  318. * ContentDirection.cs:
  319. * DataControlCellType.cs:
  320. * DataControlRowState.cs:
  321. * DataControlRowType.cs:
  322. * DetailsViewMode.cs:
  323. * DynamicImageParameterMode.cs:
  324. * FormViewMode.cs:
  325. * HotSpotMode.cs:
  326. * ImageFieldMode.cs:
  327. * LiteralMode.cs:
  328. * LogoutAction.cs:
  329. * Orientation.cs:
  330. * PagerButtons.cs:
  331. * PathDirection.cs:
  332. * ScrollBars.cs:
  333. * SiteMapNodeItemType.cs:
  334. * SiteMapNodeType.cs:
  335. * SiteMapViewType.cs:
  336. * SortDirection.cs:
  337. * TableCaptionAlign.cs:
  338. * TableHeaderScope.cs:
  339. * TableViewMode.cs:
  340. * TreeNodeSelectAction.cs:
  341. * TreeNodeTypes.cs:
  342. * TreeViewImageSet.cs:
  343. * WizardStepType.cs: Added enumerations
  344. 2004-08-02 Duncan Mak <[email protected]>
  345. * ButtonType.cs:
  346. * LoginFailureAction.cs:
  347. * LoginTextLayout.cs: Added enumerations.
  348. 2004-07-29 Gonzalo Paniagua Javier <[email protected]>
  349. * BaseValidator.cs: in Validate(), when the control is not visible or
  350. enabled, return inmediately after setting IsValid to true. Fixes bug
  351. #61831.
  352. 2004-07-27 Gonzalo Paniagua Javier <[email protected]>
  353. * DataList.cs: s/HasChildren/HasControls()/.
  354. 2004-07-27 Gonzalo Paniagua Javier <[email protected]>
  355. * DataList.cs: style.
  356. 2004-07-27 Alon Gazit <[email protected]>
  357. * DataList.cs: Replaced foreach statement with for statement,
  358. in order to improve performence.
  359. 2004-07-27 Alon Gazit <[email protected]>
  360. * WebControl.cs: changed RenderBeginTag()to use TagKey instead of
  361. TagName.
  362. * Unit.cs : changed GetTypeFromString() and GetStringFromPixel() to use
  363. switch statements in order to improve performance.
  364. 2004-06-10 Alon Gazit <[email protected]>
  365. * WebControl.cs: fixed LoadViewState().
  366. Creates new attributes state bag only when the current is null.
  367. 2004-06-07 Gonzalo Paniagua Javier <[email protected]>
  368. * Calendar.cs: implemented OnPreRender and HasWeekSelectors.
  369. 2004-06-05 Gonzalo Paniagua Javier <[email protected]>
  370. * Calendar.cs: set the title class attribute if we have it. Fixes bug
  371. 53671.
  372. 2004-06-04 Gonzalo Paniagua Javier <[email protected]>
  373. * Style.cs: added SetBit.
  374. 2004-06-03 Gonzalo Paniagua Javier <[email protected]>
  375. * Calendar.cs:
  376. * CompareValidator.cs:
  377. * ImageButton.cs:
  378. * Style.cs:
  379. * WebControl.cs: Added protected missing members and attributes.
  380. 2004-05-18 Gonzalo Paniagua Javier <[email protected]>
  381. * TextBox.cs: don't save the Text if in ViewState if it's a password.
  382. Save it if the control is not visible or not enabled. Fixes bug #58497.
  383. 2004-05-14 Gonzalo Paniagua Javier <[email protected]>
  384. * Calendar.cs: fire OnDayRender after assigning the calendar cell text.
  385. Fixes bug #58097.
  386. 2004-05-09 Gert Driesen ([email protected])
  387. * Parameter.cs:
  388. * SqlDataSourceCommandEventArgs:
  389. * XmlDataSource.cs : removed temporary workarounds for CLS
  390. compliance as System.Data is now CLS compliant
  391. 2004-05-06 Alon Gazit <[email protected]>
  392. * WebControl.cs: fixed LoadViewState() and SaveViewState().
  393. Before the change the Enabled property wasn't updated when a postback
  394. event was raised.
  395. * ListControl.cs: fixed SelectedIndex property implementation.
  396. Prevents throwing ArgumentOutOfRangeException (that should not be
  397. thrown), when the list is empty.
  398. 2004-04-28 Alon Gazit <[email protected]>
  399. * WebControl.cs: fixed LoadViewState().
  400. Always loading the saved attributes collection.
  401. 2004-04-18 Alon Gazit <[email protected]>
  402. * Repeater.cs: fixed InstantiateItem() and DataSource property.
  403. The change in DataSource prevents throwing ArgumentException while
  404. setting property value to null.
  405. The change in InstantiateItem() prevents NullReferenceException.
  406. 2004-04-07 Lluis Sanchez Gual <[email protected]>
  407. * BaseValidator.cs: Store Display property in the correct ViewState
  408. property. Don't render anything if Display is ValidatorDisplay.None.
  409. 2004-03-30 Lluis Sanchez Gual <[email protected]>
  410. * Xml.cs: In LoadXpathDoc(), don't use MapPathSecure with documentSource,
  411. since it is already a physical path. Fixes bug #55334.
  412. 2004-02-13 Jackson Harper <[email protected]>
  413. * Calendar.cs: Match MS postback data. This allows sites that
  414. parse the postback data manually to work.
  415. 2004-02-04 Alon Gazit <[email protected]>
  416. * EditCommandColumn.cs: fixed InitializeCell().
  417. The rendered LiteralControl should contain "&nbsp;" and not " ".
  418. 2004-02-01 Alon Gazit <[email protected]>
  419. * DataGrid.cs: fixed a problem in the paging mechanism in the method
  420. InitializePager().
  421. the problem was when (PagerStyle.Mode == PagerMode.NumericPages),
  422. while clicking the "..." link in the second page.
  423. 2004-01-28 Alon Gazit <[email protected]>
  424. * Calendar.cs: prevent NullReferenceException in RenderAllDays().
  425. 2004-01-27 Gonzalo Paniagua Javier <[email protected]>
  426. * Calendar.cs: when rendering days, add a LiteralControl containing the
  427. day before OnDayRender is called. Only generate the default links for
  428. days when IsSelectable is true after OnDayRender. Fixes bug #53372.
  429. 2004-01-21 Martin Baulig <[email protected]>
  430. * XmlHierarchyData.cs: Make this compile with csc.
  431. * BulletedList.cs (BulletedList.SelectedItem): Removed the `set'
  432. accessor since the base class doesn't have one.
  433. 2004-01-18 Alon Gazit <[email protected]>
  434. * CheckBoxList.cs: fix problem with negative TabIndex (wasn't rendered).
  435. 2004-01-18 Alon Gazit <[email protected]>
  436. * Style.cs: CopyFrom method shouldn't copy a value that is equal to
  437. Property default value.
  438. * FontInfo.cs : CopyFrom method shouldn't copy a value that is equal to
  439. Property default value.
  440. 2004-01-15 Alon Gazit <[email protected]>
  441. * RadioButtonList.cs: RepeatLayout property should affect the rendered
  442. html.
  443. 2004-01-15 Alon Gazit <[email protected]>
  444. * FontInfo.cs: Add validation check to Size property.
  445. 2004-01-07 Alon Gazit <[email protected]>
  446. * DataGrid.cs: Fixed PrepareControlHierarchyForItem().
  447. merge the column's style to the cell's style and not to
  448. the item's(row) style.
  449. 2004-01-04 Alon Gazit <[email protected]>
  450. * RangeValidator.cs: Fixed ControlPropertiesValid().
  451. 2004-01-03 Gonzalo Paniagua Javier <[email protected]>
  452. * Xml.cs: mono-stylized and removed warnings.
  453. 2004-1-1 Alon Gazit <[email protected]>
  454. * RadioButtonList.cs: update RenderItem() so that each RadioButton
  455. is enabled or disabled like the RadioButtonList.
  456. * CheckBoxList.cs: update RenderItem() so that each CheckBox
  457. is enabled or disabled like the CheckBoxList.
  458. 2004-1-1 Alon Gazit <[email protected]>
  459. * DataGrid.cs: Fixed PrepareControlHierarchyForItem().
  460. The Header or Footer Style shouldn't merge with the cells Style.
  461. 2004-1-1 Alon Gazit <[email protected]>
  462. * DataGridColumn.cs: Headers and Footers are initialized
  463. with the relevant Style object.
  464. 2003-12-30 Alon Gazit <[email protected]>
  465. * RepeatInfo.cs: Fixed DoVerticalRendering () and
  466. DoHorizontalRendering().
  467. Current implementation produces few extra html tags.
  468. 2003-12-29 Alon Gazit <[email protected]>
  469. * CheckBox.cs: change the implementation of LoadPostData.
  470. Currently, while the AutoPostBack property equals true ,
  471. it isn't possible to perform uncheck.
  472. 2003-12-19 Jackson Harper <[email protected]>
  473. * TableCell.cs: Setting a cells text should clear its control
  474. collection as per la specification. This fixes bug #51825.
  475. 2003-12-18 Gonzalo Paniagua Javier <[email protected]>
  476. * DataGridColumn.cs: stylized LoadViewState.
  477. * DataGridColumnCollection.cs: when TrackViewState is called, also
  478. call it on all the existing columns. Fixes bug #52334.
  479. 2003-12-18 Alon Gazit <[email protected]>
  480. * DataGridPagerStyle.cs: merge DataGridPagerStyle properties when Style
  481. is empty.
  482. 2003-12-18 Alon Gazit <[email protected]>
  483. * TableStyle.cs: merge TableStyle properties when Style is empty.
  484. 2003-12-16 Alon Gazit <[email protected]>
  485. * HyperLink.cs: Change Text property implementation. in MS when the Text
  486. property is set, all the controls in the HyperLink are being deleted.
  487. This fixes bug #52239.
  488. 2003-12-15 Alon Gazit <[email protected]>
  489. * RepeatInfo.cs: Fixed DoVerticalRendering () and
  490. DoHorizontalRendering().
  491. Both methods add additional empty table row in the head of each item
  492. table when the variable named isTable equals true (happenes with the
  493. default instantiation of RepeatInfo). These additional rows should be
  494. added when isTable equals false.
  495. This fixes bug #52225.
  496. 2003-12-15 Alon Gazit <[email protected]>
  497. * RepeatInfo.cs: Fixed DoVerticalRendering() and
  498. DoHorizontalRendering().
  499. Both methods add to rendered Header a colspan attribute according to the
  500. rows count. after the change the colspan is added according to the
  501. columns count.
  502. 2003-12-15 Alon Gazit <[email protected]>
  503. * CheckBox.cs: Disabled CheckBox does not produce same HTML as .NET.
  504. In .NET if the checkbox is disabled ,its text appears disabled too.
  505. In Mono the text appears enabled. the fix is in Render().
  506. This fixes bug #52180.
  507. 2003-12-15 Alon Gazit <[email protected]>
  508. * Repeater.cs: Change the implementation of CreateControlHierarchy().
  509. The current implementation renders extra Header and footer
  510. without Repeater.DataSource assign.
  511. This fixes bug #52179.
  512. 2003-12-15 Alon Gazit <[email protected]>
  513. * DataGrid.cs: Change the implementation of the property
  514. BackImageUrl. The current implementation has no influence
  515. on the rendered Html.
  516. 2003-12-15 Alon Gazit <[email protected]>
  517. * WebControl.cs: Change the implementation of the property
  518. Enabled. Before the change the WebControl also looked at
  519. parent.Enabled . fixed bug #52171.
  520. 2003-12-11 Jackson Harper <[email protected]>
  521. * RepeatInfo.cs: When rendering vertically figure out how many
  522. colmns are not going to be filled in in the last row, and adjust
  523. things accordingly. This fixes bug #51863.
  524. 2003-12-10 Alon Gazit <[email protected]>
  525. * TableRow.cs: Change the implementation of the properties
  526. HorizontalAlign and VerticalAlign. The current implementation
  527. has no influence on the rendered Html.
  528. 2003-12-10 Alon Gazit <[email protected]>
  529. * TableItemStyle.cs: Add setting of The WRAP flag in the Wrap
  530. property's set method.
  531. 2003-12-09 Jackson Harper <[email protected]>
  532. * PagedDataSource.cs (PrivateICollectionEnumerator.MoveNext):
  533. Increment counter when moving to start. Fixes bug #51926.
  534. 2003-12-08 Jackson Harper <[email protected]>
  535. * HyperLinkColumn.cs: Fix navigate url rendering. Patch by
  536. Benjamin Jemlich. Fixes bug #51823.
  537. 2003-12-07 Alon Gazit <[email protected]>
  538. * Panel.cs: Panel doesn't render nowrap attribute while the Wrap
  539. property is set to false. Fixes bug #58120.
  540. 2003-12-04 Gonzalo Paniagua Javier <[email protected]>
  541. * TableItemStyle.cs: merge TableItemStyle properties when Style is
  542. empty. Fixes bug #51689. Patch by Alon Gazit <[email protected]>.
  543. 2003-12-03 Gonzalo Paniagua Javier <[email protected]>
  544. * RadioButtonList.cs: render tabindex attribute if needed. Fixes bug
  545. #51648.
  546. 2003-12-02 Gonzalo Paniagua Javier <[email protected]>
  547. * WebControl.cs: don't create the attributes when GetAttribute is
  548. called.
  549. 2003-12-01 Jackson Harper <[email protected]>
  550. * WebControl.cs: Only allow access keys to be null or a single
  551. char. Patch by Alon Gazit <[email protected]>.
  552. 2003-11-30 Jackson Harper <[email protected]>
  553. * CheckBoxList.cs: A checkbox will have null post data if it is
  554. unselected. This fixes bug #51516.
  555. 2003-11-29 Jackson Harper <[email protected]>
  556. * DataGrid.cs: Display paging controls even when there is no
  557. data. Path by Mohammad DAMT. Fixes bug #51487.
  558. 2003-11-29 Jackson Harper <[email protected]>
  559. * DataGrid.cs: Call TrackViewState when loading bound columns view
  560. state. So that their state is saved. This fixes bug #51424. Also
  561. set ReadOnly.
  562. 2003-11-26 Jackson Harper <[email protected]>
  563. * BaseDataList.cs: Change && to || We will call that a typo so no
  564. one gets embarrased.
  565. 2003-11-24 Gonzalo Paniagua Javier <[email protected]>
  566. * BaseDataList.cs: allow setting null as Datasource.
  567. * DataGrid.cs: keep autogenerated columns in the ViewState.
  568. Patches by Alon Gazit <[email protected]>.
  569. 2003-11-22 Ben Maurer <[email protected]>
  570. * SqlDataSource*: Implement almost everything. Data access is
  571. still missing.
  572. 2003-11-22 Ben Maurer <[email protected]>
  573. * Calendar.cs (SaveViewState):
  574. - We were allocating a 11 item array, we only used 10 items,
  575. so only allocate 10.
  576. - We only need to save the selected dates if there are any.
  577. * DataGrid.cs (SaveViewState):
  578. * DataGridColumn.cs (SaveViewState):
  579. * DataGridColumnCollection.cs (SaveViewState):
  580. - Only return the array if there is anything in it
  581. * Style.cs (SaveViewState):
  582. - Only save the bits if there were changes.
  583. * WebControl.cs (SaveViewState), (LoadViewState):
  584. - Don't save Enabled into the viewstate here, we already
  585. do it in the property. This just caused *EVERY* control
  586. to have a non-null state, taking up lots of extra room
  587. in the ViewState.
  588. - The style will always be created with this control's
  589. viewstate, so the style will always return null for the
  590. viewstate. As such, we do not need to store it. We can
  591. also reduce the triplet to a pair because of this.
  592. 2003-11-22 Jackson Harper <[email protected]>
  593. * ValidationSummary.cs: Fix number of messages and message array computation.
  594. 2003-11-21 Andreas Nahr <[email protected]>
  595. * Xml.cs: Corrected attribute
  596. * XmlBuilder.cs: Added
  597. 2003-11-21 Gonzalo Paniagua Javier <[email protected]>
  598. * Xml.cs: class status based fixes.
  599. 2003-11-19 Jackson Harper <[email protected]>
  600. * HyperLink.cs: Use ResolveUrl instead of ResolveBaseUrl.
  601. 2003-11-19 Jackson Harper <[email protected]>
  602. * HyperLink.cs: Use ResolveBaseUrl so that ~/ is interpreted as
  603. teh applications base directory. This fixes bug #51092.
  604. 2003-11-18 Todd Berman <[email protected]>
  605. * ControlParameter.cs:
  606. * CookieParameter.cs:
  607. * FormParameter.cs:
  608. * QueryStringParameter.cs:
  609. * SessionParameter.cs: added public .ctor ()
  610. * Parameter.cs: added public .ctor (), internal SetOwnerCollection
  611. and handling, as well as internal ParameterValue for easy access.
  612. NOTE: ParameterValue doesnt respect TreatEmptyStringAsNull yet.
  613. * ParameterCollection.cs: implementation redux.
  614. 2003-11-18 Todd Berman <[email protected]>
  615. * ParameterCollection.cs: Implemented
  616. * Parameter.cs: Added _owner, SetOwnerCollection and proper handling.
  617. ToString () now matches asp.net
  618. 2003-11-17 Ben Maurer <[email protected]>
  619. * ControlParameter.cs:
  620. * CookieParameter.cs:
  621. * FormParameter.cs:
  622. * Parameter.cs:
  623. * QueryStringParameter.cs: New v2 files. Mostly
  624. implemented, still need a few methods.
  625. 2003-11-16 Gonzalo Paniagua Javier <[email protected]>
  626. * ListItem.cs: prevent nullrefs ni Get/SetAttribute. Thanks to Alon
  627. Gazit <[email protected]>.
  628. 2003-11-13 Gonzalo Paniagua Javier <[email protected]>
  629. * RadioButton.cs: fixed RenderInputTag for negative TabIndex values.
  630. Patch by Alon Gazit <[email protected]>.
  631. 2003-11-09 Ben Maurer <[email protected]>
  632. * DataBoundControl.cs: Implement
  633. * ListControl.cs: inherit from the above.
  634. * Repeater.cs, BaseDataList.cs: should reset whenever we databind.
  635. 2003-11-09 Ben Maurer <[email protected]>
  636. * BaseDataList.cs:
  637. * DataGrid.cs:
  638. * DataList.cs:
  639. * Repeater.cs: add v2 databinding stuff
  640. * XmlDataSource.cs: make it load the xml.
  641. 2003-11-09 Ben Maurer <[email protected]>
  642. * XmlDataSource.cs:
  643. * XmlDataSourceView.cs:
  644. * XmlHierarchicalDataSourceView.cs:
  645. * XmlHierarchicalEnumerable.cs:
  646. * XmlHierarchyData.cs: Implement
  647. 2003-11-08 Ben Maurer <[email protected]>
  648. * SiteMapDataSourceView.cs: Implement.
  649. 2003-11-07 Jackson Harper <[email protected]>
  650. * ImageButton.cs: This is a workaround for bug #49819. It appears
  651. that the .x and .y values are not being posted, and only the x
  652. value is being posted with the ctrl's id as the key.
  653. 2003-11-07 Jackson Harper <[email protected]>
  654. * DataGrid.cs (CreateControlHierarchy): Current page index is
  655. alolowed to equal page count. This prevents an exception being
  656. thrown when both are zero.
  657. 2003-11-06 Jackson Harper <[email protected]>
  658. * ValidationSummary.cs: Add Render method. Patch by Yaron Shkop.
  659. * BaseValidator.cs: Disable base control so the isValid flag is
  660. not reset.
  661. 2003-11-03 Jackson Harper <[email protected]>
  662. * TemplateColumn.cs: Use the same renderer for selected items as
  663. normal items. This fixes bug #49744.
  664. 2003-11-03 Jackson Harper <[email protected]>
  665. * DataList.cs:
  666. * WebControl.cs: Fix argument out of range exceptions on
  667. properties. Patch by Yaron Shkop.
  668. 2003-11-03 Jackson Harper <[email protected]>
  669. * TemplateColumn.cs: If the item is selected but there is no
  670. editItemTemplate use the itemTemplate. This matches MS behvoir.
  671. 2003-11-03 Jackson Harper <[email protected]>
  672. * Repeater.cs: Always set alternating items to the AlternatingItem
  673. type, when instantiating alternating items use the itemTemplate if
  674. the alternatingItem template is null. This matches MS behavoir and
  675. fixes bug #50157.
  676. 2003-11-03 Jackson Harper <[email protected]>
  677. * DataGridPagerStyle.cs: Name of view state attribute is
  678. PagerVisible not Visible. Call owner.OnPagerChanged when the pager
  679. visibility is changed. Patch by Yaron Shkop.
  680. 2003-11-03 Jackson Harper <[email protected]>
  681. * RepeatInfo.cs: When doing horizontal rendering use the repeat
  682. columns as the number of columns in a row. This fixes bug #49016.
  683. 2003-11-03 Jackson Harper <[email protected]>
  684. * PagedDataSource.cs (PageCount): Return page count of 1 if there
  685. paging is disabled. Patch by Yaron Shkop.
  686. * PagedDataSource.cs (CopyTo): Improve. Patch by Yaron Shkop.
  687. * TableStyle.cs (AddAttributesToRender): Render border style
  688. collapse. Patch by Yaron Shkop.
  689. * TableStyle.cs:
  690. * TableItemStyle.cs:
  691. * DataGridPagerStyle.cs: Call base copy and merge even if style is of
  692. the wrong type. Patch by Yaron Shkop.
  693. 2003-11-03 Jackson Harper <[email protected]>
  694. * BoundColumn.cs: Render readonly columns. Patch by Mohammad DAMT.
  695. 2003-11-02 Ben Maurer <[email protected]>
  696. * BulletStyle.cs:
  697. * BulletedListDisplayMode.cs:
  698. * BulletedListEventHandler.cs:
  699. * BulletedList.cs:
  700. * BulletedListEventArgs.cs: V2 controls (yay!)
  701. 2003-10-30 Jackson Harper <[email protected]>
  702. * Repeater.cs: Throw an exception if the datasource is set to
  703. something that does not implement either IListSource or
  704. IEnumerable. This fixes bug #50155.
  705. 2003-10-30 Jackson Harper <[email protected]>
  706. * DataGridPagerStyle.cs: Do not allow page button counts to be set
  707. to less then 1. Patch by Yaron Shkop. This fixes bug #50236.
  708. 2003-10-29 Jackson Harper <[email protected]>
  709. * ButtonColumn.cs: Format string and text to format were
  710. inversed. This fixes bug #50171.
  711. 2003-10-29 Jackson Harper <[email protected]>
  712. * DataGridColumn.cs: If an item style is set apply it to the
  713. cell. This fixes bug #50173.
  714. 2003-10-29 Ben Maurer <[email protected]>
  715. * HyperLinkColumn.cs: Patch by Yaron Shkop. Fixes #50234. Remove
  716. old debugging value.
  717. 2003-10-29 Jackson Harper <[email protected]>
  718. * PagedDataSource.cs:
  719. * DataGrid.cs: Patch by Mohammad DAMT. Do not go past the
  720. end of the last page. Fixes bug #5085.
  721. 2003-10-29 Jackson Harper <[email protected]>
  722. * CheckBox.cs: Do not change the status of a checkbox when there
  723. is no post data. This fixes bug #49091.
  724. * CheckBoxList.cs: Do not change the status of the checkboxes when
  725. there is no post data. This fixes bug #49093.
  726. 2003-10-26 Ben Maurer <[email protected]>
  727. * RadioButton.cs: Patch by Yaron Shkop. Enables disabling a
  728. RadioButton. Fixes #50132
  729. 2003-10-25 Ben Maurer <[email protected]>
  730. * PagedDataSource.cs: Patch by Ivo Haamer. Typo prevented
  731. paging from working. Fixes #48814.
  732. 2003-10-25 Ben Maurer <[email protected]>
  733. * DataGrid.cs: A few typos kept us from viewing datagrids
  734. that were based on customized collections.
  735. 2003-10-24 Ben Maurer <[email protected]>
  736. * DataGridCommandEventArgs.cs: typo, cmdSrc was becoming origionalArgs.
  737. 2003-10-23 Ben Maurer <[email protected]>
  738. * Calendar.cs: render the next month button so that aligns to the
  739. right.
  740. 2003-10-23 Gonzalo Paniagua Javier <[email protected]>
  741. * BaseCompareValidator.cs: splitted Convert. Fixed bug #49927. The fix
  742. was just changing && by || after the first Match.
  743. 2003-10-23 Gonzalo Paniagua Javier <[email protected]>
  744. * Calendar.cs: apply header style in RenderHeader. Fixes bug #49144.
  745. Patch by Yaron Shkop.
  746. 2003-10-22 Gonzalo Paniagua Javier <[email protected]>
  747. * DataGrid.cs: applied patch from Yaron Shkop ([email protected])
  748. that fixes bug #49744. Now the selection doesn't lose its data.
  749. 2003-10-21 Ben Maurer <[email protected]>
  750. * EditCommandColumn.cs: Implement; fix #49736
  751. 2003-10-21 Ben Maurer <[email protected]>
  752. * ButtonColumn.cs: Use the DataGridLinkButton, so that we inherit
  753. the forground color. bug #49738
  754. 2003-10-19 Gonzalo Paniagua Javier <[email protected]>
  755. * Calendar.cs: fixed bug #49727.
  756. 2003-10-18 Ben Maurer <[email protected]>
  757. * TableStyle.cs: fix #49740.
  758. 2003-10-19 Gonzalo Paniagua Javier <[email protected]>
  759. * SelectedDatesCollection.cs: fix by Yaron for bug #49698.
  760. * ValidationSummary.cs: fixes bug #49669.
  761. 2003-10-11 Gonzalo Paniagua Javier <[email protected]>
  762. * Calendar.cs: apply the calendar style to the new Table, not to itself.
  763. Fixes #49406.
  764. * CheckBox.cs: render the hidden fields if AutoPostBack.
  765. * Style.cs: don't render empty width/height. Small improvement in
  766. CopyFrom.
  767. * Table.cs: fixed condition for border width.
  768. * TableStyle.cs:
  769. (CopyFrom): always call the base class to copy other attributes. Fixes
  770. bug #49408. Don't render empty 'rules' attribute.
  771. * WebControl.cs: track viewstate when enabled. Don't overwrite source
  772. control attributes in CopyBaseAttributes.
  773. * ChangeLog: fixed dates.
  774. 2003-10-08 Gaurav Vaish <gvaish_mono AT lycos.com>
  775. * WebControl.cs : Attributes { get; } - Is Complete.
  776. * ValidationSummary.cs : AddAttributesToRender(HtmlTextWriter)
  777. - Completed.
  778. 2003-10-08 Gaurav Vaish <gvaish_mono AT lycos.com>
  779. * BaseValidator.cs : DetermineRenderUplevel() - Completed.
  780. : RegisterValidatorCommonScript()
  781. - More code, I need HELP!
  782. : RegisterValidatorDeclaration()
  783. - More code, I need HELP!
  784. 2003-09-29 Gonzalo Paniagua Javier <[email protected]>
  785. * CheckBoxList.cs: don't lose state when enabling/disabling. See bug
  786. #48802.
  787. 2003-09-28 Gonzalo Paniagua Javier <[email protected]>
  788. * Repeater.cs: fixed bug #48807. It needed to use a DummyDataSource and
  789. ClearViewState only called when no items.
  790. 2003-09-28 Gonzalo Paniagua Javier <[email protected]>
  791. * RadioButtonList.cs: fix for bug #48874 by Yaron Shkop.
  792. 2003-09-28 Gonzalo Paniagua Javier <[email protected]>
  793. * RadioButtonList.cs: fix for bug #48870 by Yaron Shkop.
  794. 2003-09-27 Gonzalo Paniagua Javier <[email protected]>
  795. * DataList.cs: fixed bug #48217. Patch by [email protected] (Yaron
  796. Shkop).
  797. 2003-09-27 Gonzalo Paniagua Javier <[email protected]>
  798. * AdRotator.cs: fixes bug #48691. Patch by [email protected] (Yaron
  799. Shkop).
  800. 2003-09-27 Gonzalo Paniagua Javier <[email protected]>
  801. * CheckBox.cs: render the 'disabled' attribute in the correct tag.
  802. * WebControl.cs: fixed Enabled property and save it in ViewState.
  803. Fixes bug #48802.
  804. 2003-09-21 Gonzalo Paniagua Javier <[email protected]>
  805. * ListControl.cs: fixed bug #48668. Thanks to Yaron Shkop.
  806. 2003-09-21 Gonzalo Paniagua Javier <[email protected]>
  807. * ListBox.cs: patch by [email protected] (Yaron Shkop) that fixes
  808. bug #48671.
  809. 2003-09-19 Gonzalo Paniagua Javier <[email protected]>
  810. * FontInfo.cs: fixed Name property as suggested by Rich Alimi
  811. <[email protected]>.
  812. 2003-09-14 Gonzalo Paniagua Javier <[email protected]>
  813. * RegularExpressionValidator.cs: fix for EvaluateIsValid by Juraj
  814. Skripsky <[email protected]>
  815. 2003-09-13 Gonzalo Paniagua Javier <[email protected]>
  816. * BaseValidator.cs: patch by Juraj Skripsky ([email protected]) that
  817. fixes rendering of the end tag.
  818. 2003-08-31 Gonzalo Paniagua Javier <[email protected]>
  819. * Repeater.cs: fix for Items property provided by [email protected]
  820. (Yaron Shkop). Closes bug #48060.
  821. 2003-08-26 Gonzalo Paniagua Javier <[email protected]>
  822. * CheckBox.cs: in LoadPostData, only return
  823. true when the new data is different from the one we had. Fixed
  824. conditions to save Checked state. Thanks to [email protected]
  825. (Yaron Shkop).
  826. 2003-08-26 Gonzalo Paniagua Javier <[email protected]>
  827. * Style.cs: Font.Strikeout renders as 'line-through'. Fixes bug #47871.
  828. 2003-08-25 Gonzalo Paniagua Javier <[email protected]>
  829. * WebControl.cs: removed dangling ^M and unneeded fields. Keep track
  830. of Enable in ViewState. Fixes bug #47865.
  831. 2003-08-20 Gonzalo Paniagua Javier <[email protected]>
  832. * Style.cs: the MARKED bit is not send set in ViewState unless something
  833. is changed. Fixed TrackViewState condition.
  834. * WebControl.cs: save the base ViewState *after* ControlStyle is done,
  835. because it uses the same ViewState as the control. Fixes bug #47725.
  836. 2003-08-16 Gonzalo Paniagua Javier <[email protected]>
  837. * HyperLinkColumn.cs: patch from David Pickens <[email protected]>
  838. that fixes databinding when only DataTextField or DataNavigateUrlField
  839. is set.
  840. 2003-08-14 Gonzalo Paniagua Javier <[email protected]>
  841. * ListControl.cs: patch sent by Yaacov Akiba Slama <[email protected]> on
  842. behalf of Yaron Shkop <[email protected]> that fixes selection of
  843. values before assigning a data source and other issues.
  844. 2003-08-11 Gonzalo Paniagua Javier <[email protected]>
  845. * CheckBox.cs: save viewstate when needed and correctly handle post
  846. data. Fixes bug #47462.
  847. 2003-08-01 Andreas Nahr <[email protected]>
  848. * ButtonColumn.cs: Removed additional attributes
  849. * CheckBox.cs: Added attribute
  850. * DataGrid.cs: Added attributes
  851. * HyperLinkColumn.cs: Changed attributes, added lamespec
  852. * Style.cs: Removed attributes
  853. * TextBox.cs: Added/ removed attributes
  854. 2003-08-01 Andreas Nahr <[email protected]>
  855. * AdRotator.cs: Added all attributes
  856. * BaseDataList.cs: Added all attributes, added lamespec, removed additional attributes
  857. * BaseValidator.cs: Added all attributes
  858. * BoundColumn.cs: Added all attributes
  859. * Button.cs: Added all attributes
  860. * ButtonColumn.cs: Added all attributes, added lamespec
  861. * Calendar.cs: Added all attributes, added error checks, throws more exceptions
  862. * CheckBox.cs: Added all attributes
  863. * CheckBoxList.cs: Added all attributes
  864. * CompareValidator.cs: Added all attributes
  865. * CustomValidator.cs: Added all attributes
  866. * DataGrid.cs: Added all attributes, more verbose exceptions, fixed signature, removed additional attributes
  867. * DataGridColumn.cs: Added all attributes
  868. * DataGridColumnCollection.cs: Added all attributes
  869. * DataGridPagerStyle.cs: Added all attributes
  870. * DataGridTableInternal.cs: Made DataGridTableInternal internal
  871. * DataList.cs: Added all attributes, more verbose exceptions, removed non-existing member
  872. * DropDownList.cs: Added all attributes
  873. * FontInfo.cs: Added all attributes
  874. * HyperLink.cs: Added all attributes
  875. * HyperLinkColumn.cs: Added all attributes
  876. * Image.cs: Added all attributes
  877. * ImageButton.cs: Added all attributes
  878. * Label.cs: Added all attributes
  879. * LinkButton.cs: Added all attributes
  880. * ListBox.cs: Added all attributes, added error checks, throws more exceptions
  881. * ListControl.cs: Added all attributes
  882. * ListItem.cs: Added all attributes
  883. * ListItemCollection.cs: Added attribute
  884. * Literal.cs: Added all attributes
  885. * Panel.cs: Added all attributes
  886. * RadioButton.cs: Added all attributes
  887. * RadioButtonList.cs: Added all attributes, added error checks, throws more exceptions
  888. * RangeValidator.cs: Added all attributes
  889. * RegularExpressionValidator.cs: Added all attributes
  890. * Repeater.cs: Added all attributes
  891. 2003-07-30 Andreas Nahr <[email protected]>
  892. * RequiredFieldValidator.cs: Added all attributes
  893. * Style.cs: Added all attributes
  894. * Table.cs: Added all attributes
  895. * TableCell.cs: Added all attributes, added error checks, throws more exceptions
  896. * TableCellCollection.cs: Added attribute
  897. * TableRow.cs: Added all attributes
  898. * TableRowCollection: Added attribute
  899. * TableStyle.cs: Added all attributes, improved error messages
  900. * TemplateColumn.cs: Added all attributes
  901. * TextBox.cs: Added all attributes, added error checks, throws more exceptions
  902. * ValidationSummary.cs: Added all attributes
  903. * WebControl.cs: Added all attributes
  904. * Xml.cs: Added all attributes
  905. 2003-07-30 Gonzalo Paniagua Javier <[email protected]>
  906. * DataGrid.cs: fixed signature of ItemCreated and PageIndexChanged.
  907. * DataList.cs: fixed signature of ItemCreated and ItemDataBound.
  908. 2003-07-21 Gonzalo Paniagua Javier <[email protected]>
  909. * CheckBoxList.cs: fixes bug reported on the list about the state of
  910. the CheckButtons not being preserved across posts.
  911. 2003-07-21 Gonzalo Paniagua Javier <[email protected]>
  912. * ListControl.cs: added SelectedValue property (1.1). Closes 46412.
  913. 2003-06-30 Gonzalo Paniagua Javier <[email protected]>
  914. * AdRotator.cs: fixed bug #44271 and a few others bugs. Mono-stylized.
  915. 2003-06-26 Gonzalo Paniagua Javier <[email protected]>
  916. * ListControl.cs: save viewstate data when any of the 3 values is not
  917. null. Fixed condition to save selection indices. Closes bug #45493.
  918. 2003-06-20 Gonzalo Paniagua Javier <[email protected]>
  919. * DataGrid.cs: fixed bug #43823.
  920. 2003-05-29 Gonzalo Paniagua Javier <[email protected]>
  921. * DataGrid.cs: fixed delegate type for SortCommand.
  922. 2003-05-09 Gonzalo Paniagua Javier <[email protected]>
  923. * DataGridColumnCollection.cs: added missing return in RemoveAt.
  924. 2003-05-09 Gonzalo Paniagua Javier <[email protected]>
  925. * DataGridColumnCollection.cs: fixed LoadViewState for the columns.
  926. Don't save ViewState is the number of columns is 0.
  927. 2003-05-02 Gonzalo Paniagua Javier <[email protected]>
  928. * DataGrid.cs: get the right item Type for the property we're reading
  929. fromt the data source.
  930. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  931. * Label.cs:
  932. * TextBox.cs: added control builder attribute.
  933. 2003-03-29 Gonzalo Paniagua Javier <[email protected]>
  934. * DataGrid.cs: Fixed SaveViewState and type of ItemDataBound.
  935. 2003-03-17 George Kodinov <[email protected]>
  936. * Unit.cs: Called the correct method to get the Numeric locale for the
  937. double conversion
  938. 2003-02-15 Gonzalo Paniagua Javier <[email protected]>
  939. * ButtonColumn.cs: fixed a couple of infinite loop problems and render
  940. correctly the header of the column.
  941. * DataGridTableInternal.cs: don't assign a default ID to this control.
  942. * LinkButton.cs: raise bubble event in OnCommand.
  943. * TableCellCollection.cs: fixed the index returned by Add.
  944. * TableRowCollection.cs: ditto.
  945. 2003-02-06 Gonzalo Paniagua Javier <[email protected]>
  946. * Xml.cs: don't call MapPathSecure when setting DocumentSource.
  947. 2003-02-05 Gonzalo Paniagua Javier <[email protected]>
  948. * RangeValidator.cs: fixed bug #37577. Thanks to Stephane Tombeur
  949. for reporting the bug and providing the fix.
  950. 2003-01-26 Gonzalo Paniagua Javier <[email protected]>
  951. * DataGrid.cs: AutoGenerateColumns defaults to true. Fixed
  952. CreateColumnSet. Set the owner of the column when auto generated.
  953. In PrepareControlHierarchyForItem, fixed for loop bound.
  954. * LinkButtonInternal.cs: fixed infinite recursion bug.
  955. Fixes bug #37124.
  956. 2003-01-22 Zdravko Tashev <[email protected]>
  957. * Xml.cs: a few fixes.
  958. 2003-01-20 Gonzalo Paniagua Javier <[email protected]>
  959. * DataList.cs: handle the exception when adding new keys to
  960. DataKeysArray.
  961. 2003-01-17 Gonzalo Paniagua Javier <[email protected]>
  962. * BaseDataList.cs: what can I say for this one? I spent so many time
  963. until I finally found this that I'm gonna miss this f....g bug... ;-).
  964. Farewell. Now we can get events from image buttons inside Data*.
  965. * DataList.cs: now the value stored in ViewState for item count is
  966. correct.
  967. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  968. * DataGrid.cs: default value for ShowHeaders is true. Fixed style for
  969. Header and Footer.
  970. * DataGridColumn.cs: added SetOwner method.
  971. * DataGridColumnCollection.cs: set the owner of the column when added.
  972. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  973. * BoundColumn.cs: typo.
  974. * DataGrid.cs: use 'as' instead of casting. Typo.
  975. * HyperLinkColumn.cs: call OnColumnChanged when any property change.
  976. Mono-stylized.
  977. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  978. * HyperLink.cs: fixes bug #36336.
  979. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  980. * DataList.cs: fixed IRepeatInfoUser.GetItemStyle.
  981. 2002-12-17 Gonzalo Paniagua Javier <[email protected]>
  982. * BaseValidator.cs: return an empty string in GetControlValidationValue
  983. when GetValue returned null.
  984. * CompareValidator.cs: fixed EvaluateIsValid.
  985. * RegularExpressionValidator.cs: fixed EvaluateIsValid.
  986. 2002-12-17 Gonzalo Paniagua Javier <[email protected]>
  987. * Xml.cs: use MapPathSecure to get the path of the document.
  988. 2002-12-13 Gonzalo Paniagua Javier <[email protected]>
  989. * DataList.cs: fixed header & footer.
  990. 2002-12-12 Gonzalo Paniagua Javier <[email protected]>
  991. * DataList.cs: for header and footer don't use data source.
  992. Instantiate in the DataListItem, not in the DataList.
  993. databind-template.aspx works now.
  994. 2002-11-21 Gonzalo Paniagua Javier <[email protected]>
  995. * BaseDataList.cs:
  996. (Render): call RenderContents (), not base.RenderContents ().
  997. * DataList.cs: style.
  998. But I still haven't found what i'm looking for....
  999. 2002-11-20 Gonzalo Paniagua Javier <[email protected]>
  1000. * Calendar.cs: fixed loading/saving selected dates.
  1001. * SelectedDatesCollection.cs: added internal function to get the
  1002. underlying ArrayList.
  1003. Calendar navigation works again. Selecting dates too.
  1004. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  1005. * DataList.cs: added a few attributes and fixed infinite recursion.
  1006. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  1007. * ListItemCollection.cs: fixed LoadViewState.
  1008. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  1009. * TableItemStyle.cs: TypeDescriptor.GetConverter seems to fail.
  1010. Commented out some code until it works.
  1011. 2002-10-29 Gaurav Vaish <[email protected]>
  1012. * BaseCompareValidator.cs - Fixed operator bug in
  1013. Compare(string, string, ...)
  1014. * CompareValidator.cs - EvaluateIsValid() : Implemented.
  1015. 2002-10-28 Gaurav Vaish <[email protected]>
  1016. * BoundColumn.cs - InitializeCell(TableCell, int, ListItemType)
  1017. : Implemented.
  1018. - All Properties : Now make use of ViewState.
  1019. 2002-10-28 Gaurav Vaish <[email protected]>
  1020. * BaseValidator.cs - Uncomment NotImplementedException.
  1021. 2002-10-28 Gaurav Vaish <[email protected]>
  1022. * BaseValidator.cs - Minor changes in TODO comments.
  1023. 2002-10-28 Gaurav Vaish <[email protected]>
  1024. * BaseValidator.cs - DetermineRenderUpLevel() : Uncomment
  1025. the NotImplementedException being thrown.
  1026. * DataGridPagerStyle.cs - Mode { set; } : Implemented.
  1027. * DataGridLinkButton.cs - Added new class (private) : Implemented.
  1028. * DataGrid.cs - InitializePager(DataGridItem, int,
  1029. PagedDataSource) : Implemented.
  1030. 2002-10-28 Gaurav Vaish <[email protected]>
  1031. * DataList.cs - PrepareControlHierarchy() : Implemented.
  1032. 2002-10-28 Gaurav Vaish <[email protected]>
  1033. * DataList.cs - RenderContents(HtmlTextWriter) : Implemented.
  1034. - GetItem(ListItemType, int) : Removed TODO.
  1035. - CreateControlHierarchy(bool) : Implemented.
  1036. - CreateItem(int, ListItemType) : Implemented.
  1037. - CreateItem(int, ListItemType,
  1038. bool, object) : Implemented.
  1039. - InitializeItem(DataItem) : Implemented.
  1040. * DataGrid.cs - CreateControlHierarchy(bool) : Bug fix.
  1041. The ViewState["_!ItemCount"],
  1042. ViewState["_!DataSource_ItemCount"]
  1043. are shared by DataList and DataGrid, and hence
  1044. should share the same name.
  1045. - ResolveDataSource(object, string)
  1046. : Removed. Use System.Web.UI.Utils.DataSourceHelper
  1047. ::GetResolvedDataSource(object, string).
  1048. 2002-09-12 Gonzalo Paniagua Javier <[email protected]>
  1049. * DataGrid.cs: fixed compilation
  1050. 2002-09-12 Gaurav Vaish <[email protected]>
  1051. * PagedDataSource.cs - FirstIndexInPage : Fixed bug.
  1052. * DataGrid.cs - CreateControlHierarchy(bool)
  1053. : working towards completion.
  1054. - ResolveDataSource(object, string)
  1055. : stubbed new method
  1056. - CreateItem(....)
  1057. : stubbed new method
  1058. Well. It's almost done.
  1059. * DataGridTableInternal.cs
  1060. - Added new internal class.
  1061. 2002-08-28 Gaurav Vaish <[email protected]>
  1062. * DataSourceInternal.cs - Added new class (internal).
  1063. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  1064. * FontUnit.cs:
  1065. * HorizontalAlign.cs:
  1066. * Unit.cs:
  1067. * VerticalAlign.cs: fixes based on class status page.
  1068. * HorizontalAlignConverter.cs: implemented.
  1069. * VerticalAlignConverter.cs: implemented.
  1070. * FontUnitConverter.cs: implemented GetStandardValues ().
  1071. * WebColorConverter.cs: implemented ConvertFrom () and ConvertTo ().
  1072. 2002-08-19 Gaurav Vaish <[email protected]>
  1073. * DataGrid.cs - AutoCreateColumns: Bug fixes.
  1074. 2002-08-19 Gaurav Vaish <[email protected]>
  1075. * DataGrid.cs - AutoCreateColumns: completed, hopefully!
  1076. 2002-08-19 Gaurav Vaish <[email protected]>
  1077. * DataGrid.cs - Working on the undocumented protected
  1078. method CreateColumnSet. AutoCreateColumns method
  1079. stubbed. Left CreateControlHierarchy for the time
  1080. being, looks like I'm going insane. ;-)
  1081. 2002-08-19 Gaurav Vaish <[email protected]>
  1082. * Button.cs - Steffen's OnCommand bug fix.
  1083. 2002-08-12 Gaurav Vaish <[email protected]>
  1084. * DataGrid.cs - Added protected method (skeleton)
  1085. CreateColumnSet(PagedDataSource, bool)
  1086. Still trying to know how will it be used
  1087. and what for...
  1088. 2002-08-10 Gonzalo Paniagua Javier <[email protected]>
  1089. * PagedDataSource.cs: fixed compilation.
  1090. 2002-08-08 Gaurav Vaish <[email protected]>
  1091. * DataGrid.cs - Added private method
  1092. CreatePagedDataSource
  1093. - Started work on
  1094. CreateControlHierarchy(bool)
  1095. * PagedDataSource.cs - Bug fixed.
  1096. CurrentPageIndex is writable.
  1097. 2002-08-07 Gonzalo Paniagua Javier <[email protected]>
  1098. * DataGrid.cs: fixed typo.
  1099. * DataGridPagerStyle.cs: added IsPagerOnTop and IsPagerOnBottom.
  1100. 2002-08-06 Gaurav Vaish <[email protected]>
  1101. * DataGridColumn.cs - Added internal methods to get the
  1102. various styles (needed in DataGrid.cs)
  1103. * DataGrid.cs - Completed the method
  1104. PrepareControlHierarchy()
  1105. 2002-08-06 Gaurav Vaish <[email protected]>
  1106. * DataGrid.cs - Wokring on PrepareControlHierarchy()
  1107. - Added private method
  1108. PrepareControlHierarchyForItem()
  1109. 2002-08-05 Gaurav Vaish <[email protected]>
  1110. * DataGrid.cs - Completed method
  1111. OnBubbleEvent(object, EventArgs)
  1112. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  1113. * Xml.cs: implemented document/transform load.
  1114. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  1115. * Calendar.cs: added myself to the list of authors.
  1116. * DropDownList.cs: fixed a few properties.
  1117. * ListControl.cs: fixed SelectedIndex.
  1118. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  1119. * Calendar.cs: lots of fixes. Render days. Still left to persist
  1120. selected days when changing month.
  1121. * Unit.cs: fixed Percentage and Pixel.
  1122. * WebControl.cs: a few properties are now using ControlStyle instead
  1123. of ViewState to persist.
  1124. 2002-07-28 Gonzalo Paniagua Javier <[email protected]>
  1125. * BaseValidator.cs: it works now.
  1126. * DataGridColumn.cs: added attribute and made it abstract.
  1127. * RequiredFieldValidator.cs: fixed return value in EvaluateIsValid.
  1128. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  1129. * TextBox.cs: default for Wrap is true.
  1130. (OnPreRender): don't save Text if there are no listeners on TextChanged.
  1131. 2002-07-19 Gonzalo Paniagua Javier <[email protected]>
  1132. * DropDownList.cs:
  1133. (ToolTip): fixed.
  1134. * ListItem.cs:
  1135. (LoadViewState): fixed.
  1136. * ListItemCollection.cs:
  1137. (TrackViewState): use items instead of 'this' in foreach.
  1138. * Style.cs:
  1139. (LoadViewState): more checking of parameters.
  1140. * WebControl.cs: implemented LoadViewState and SaveViewState.
  1141. 2002-07-17 Gonzalo Paniagua Javier <[email protected]>
  1142. * ListItem.cs: there was no code to unset the flags!!!
  1143. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  1144. * FontUnit.cs: use a hashtable for mapping size name to value.
  1145. * HyperLink.cs: fixed a bug and a typo.
  1146. * Unit.cs: some fixes to internal constructor.
  1147. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  1148. * ListControl.cs: fixed a couple of range checks.
  1149. * WebControl.cs: MS lies! Not all WebControls must be rendered inside
  1150. an HtmlForm (p.e., Label).
  1151. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  1152. * AdRotator.cs:
  1153. * Button.cs:
  1154. * Calendar.cs:
  1155. * CheckBox.cs:
  1156. * CheckBoxList.cs:
  1157. * DataList.cs:
  1158. * DropDownList.cs:
  1159. * HyperLink.cs:
  1160. * HyperLinkColumn.cs:
  1161. * Image.cs:
  1162. * ImageButton.cs:
  1163. * Label.cs:
  1164. * LinkButton.cs:
  1165. * ListBox.cs:
  1166. * Panel.cs:
  1167. * PlaceHolder.cs:
  1168. * RadioButton.cs:
  1169. * RadioButtonList.cs:
  1170. * Table.cs:
  1171. * TableRow.cs:
  1172. * TextBox.cs:
  1173. * WebControl.cs: removed attributes added by mistake (i used
  1174. GetCustomAttributes (true), d'oh!).
  1175. * DataListItem.cs: implemented RenderItem.
  1176. * Repeater.cs: implemented CreateItem and InitializeItem.
  1177. 2002-07-08 Gonzalo Paniagua Javier <[email protected]>
  1178. * BaseDataList.cs: a couple of fiex and added attributes.
  1179. * DataGrid.cs: little fixes.
  1180. 2002-07-07 Gonzalo Paniagua Javier <[email protected]>
  1181. * CheckBoxList.cs:
  1182. * DataGrid.cs:
  1183. * DataList.cs:
  1184. * DropDownList.cs:
  1185. * ListBox.cs:
  1186. * PlaceHolder.cs:
  1187. * RadioButton.cs:
  1188. * RadioButtonList.cs:
  1189. * TableRow.cs:
  1190. * WebControl.cs:
  1191. * Xml.cs: forgot to add using System.ComponentModel.
  1192. * BaseValidator.cs: use explicitly
  1193. System.ComponentModel.AttributeCollection as there is another class
  1194. with the same name under System.Web.UI.
  1195. 2002-07-07 Gonzalo Paniagua Javier <[email protected]>
  1196. * AdRotator.cs:
  1197. * Button.cs:
  1198. * Calendar.cs:
  1199. * CheckBox.cs:
  1200. * CheckBoxList.cs:
  1201. * DataGrid.cs:
  1202. * DataList.cs:
  1203. * DropDownList.cs:
  1204. * HyperLink.cs:
  1205. * Image.cs:
  1206. * ImageButton.cs:
  1207. * Label.cs:
  1208. * LinkButton.cs:
  1209. * ListBox.cs:
  1210. * Panel.cs:
  1211. * PlaceHolder.cs:
  1212. * RadioButton.cs:
  1213. * RadioButtonList.cs:
  1214. * Table.cs:
  1215. * TableRow.cs:
  1216. * TextBox.cs:
  1217. * WebControl.cs:
  1218. * Xml.cs: added/fixed all attributes used by xsp.
  1219. * BaseValidator.cs: some fixes.
  1220. 2002-07-06 Gonzalo Paniagua Javier <[email protected]>
  1221. * Table.cs:
  1222. (AddAttributesToRender): correctly default to border=1.
  1223. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  1224. * AdRotator.cs:
  1225. (LoadAdFile): make the dictionary null after every iteration.
  1226. * LinkButton.cs:
  1227. * ListControl.cs:
  1228. * ListItem.cs: fixed warnings.
  1229. Mon Jul 1 16:23:15 CEST 2002 Paolo Molaro <[email protected]>
  1230. * Style.cs, TableRow.cs, DataListItem.cs: fix compilation.
  1231. 2002-06-30 Gonzalo Paniagua Javier <[email protected]>
  1232. * DataGridColumn.cs:
  1233. * DataGridPagerStyle.cs:
  1234. * DataList.cs:
  1235. * DataListItem.cs:
  1236. * Image.cs:
  1237. * LinkButton.cs:
  1238. * ListControl.cs:
  1239. * ListItem.cs:
  1240. * ListItemCollection.cs:
  1241. * Repeater.cs:
  1242. * ServerValidateEventArgs.cs:
  1243. * Style.cs:
  1244. * TableRow.cs:
  1245. * WebControl.cs:
  1246. * Xml.cs: more class status page based changes.
  1247. 2002-06-29 Gonzalo Paniagua Javier <[email protected]>
  1248. * Button.cs:
  1249. (.ctor): fixed to render the correct tag.
  1250. (IPostBAckEventHandler.RaisePostBackEvent): fixed.
  1251. 2002-06-24 Gonzalo Paniagua Javier <[email protected]>
  1252. * WebControl.cs:
  1253. (AddAttributesToRender): call Page.VerifyRenderingInServerForm. All
  1254. WebControl derived classes should be rendered inside a HtmlForm.
  1255. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  1256. * Repeater.cs: implemented CreateControlHierarchy. Fixed some event
  1257. processing methods.
  1258. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  1259. * RadioButtonList.cs: implemented IRepeatInfoUser.RenderItem.
  1260. * RepeatInfo.cs: implemented DoHorizontalRendering.
  1261. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  1262. * System.Web.UI.WebControls/Repeater.cs:
  1263. (Controls):
  1264. (OnDataBinding): fixed stack overflow.
  1265. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  1266. * RadioButtonList.cs: implemented IRepeatInfoUser.RenderItem.
  1267. * RepeatInfo.cs: implemented DoHorizontalRendering.
  1268. 2002-06-18 Gonzalo Paniagua Javier <[email protected]>
  1269. * WebControl.cs:
  1270. (CopyBaseAttributes): copy Attributes and don't throw exception.
  1271. 2002-06-18 Gonzalo Paniagua Javier <[email protected]>
  1272. * ListBox.cs: mono-stylized.
  1273. (AddAttributesToRender): call parent class method.
  1274. 2002-06-17 Gonzalo Paniagua Javier <[email protected]>
  1275. * Style.cs: fixed IsEmpty and Width.
  1276. * Table.cs: mono-stylized.
  1277. (TableRowControlCollection.AddAt): fixed.
  1278. (AddAttributesToRender): fixed.
  1279. * TableCell.cs: mono-stylized.
  1280. (.ctor): use PreventAutoID.
  1281. (AddAttributesToRender): fixed.
  1282. (AddParsedSubObject): fixed.
  1283. * TableRow.cs: mono-stylized. Added
  1284. ParseChildren attribute.
  1285. * TableStyle.cs:
  1286. (get_GridLine): fixed.
  1287. 2002-06-16 Gonzalo Paniagua Javier <[email protected]>
  1288. * Panel.cs: fixed stack overflow.
  1289. * Unit.cs: use Int32.Parse and Single.Parse instead of Int32Converter
  1290. and SingleConverter.
  1291. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  1292. * RadioButton.cs: mono-stylized and some little fixes.
  1293. * TextBox.cs: mono-stylized.
  1294. (MaxLength): fixed typo.
  1295. (AddAttributesToRender): don't render the text between the tags for
  1296. SingleLine, use value attribute for it. Don't render the text for
  1297. Password.
  1298. (OnPreRender): don't throw exception and call base.OnPreRender.
  1299. (Render): for MultiLine, render the text between the opening and
  1300. closing tags encoded as HTML.
  1301. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  1302. * ImageButton.cs:
  1303. (AddAttributesToRender): fixer another stack overflow.
  1304. * WebControl.cs:
  1305. (TagName): modified to use TagKey instead of tagKey as the property
  1306. can be overriden.
  1307. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  1308. * LinkButton.cs: mono-stylized.
  1309. (AddParsedSubObject):
  1310. (RenderControls): little fixes.
  1311. * WebControl.cs:
  1312. (AddAttributesToRender): fixed usage of IEnumerator.
  1313. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  1314. * Literal.cs: beautified.
  1315. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  1316. * Label.cs: beautified and fixed a couple of 'classic' bugs.
  1317. * WebControl.cs: use Span as default tag when no other provided in
  1318. constructor. That is what MS renders.
  1319. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  1320. * Button.cs:
  1321. (AddAttributesToRender): fixed (classic) stack overflow.
  1322. * CheckBox.cs: mono-stylized.
  1323. (AutoPostBack): fixed stack overflow.
  1324. (Render): fixed alignment issues. Also set the For attribute always
  1325. for the label.
  1326. 2002-06-11 Gonzalo Paniagua Javier <[email protected]>
  1327. * AdRotator.cs: GetData does not work as it should, but now it returns
  1328. useful data (only the first ad in the file). Set the NavigateUrl
  1329. property in the hyperlink if available.
  1330. * HyperLink.cs: fixed constructor and a couple of stack overflows.
  1331. * Image.cs: added an attribute and fixed stack overflow.
  1332. * WebControl.cs:
  1333. (RenderBeginTag): fixed.
  1334. (TagName): don't call Enum.IsDefined twice.
  1335. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  1336. * WebControl.cs: added attributes PersistChildrenAttribute and
  1337. ParseChildrenAttribute.
  1338. 2002-05-24 Duncan Mak <[email protected]>
  1339. * DataGridItem.cs (SetItemType): Changed function signature to
  1340. match 1.0 spec.
  1341. * ListItemCollection.cs (this): Changes the visibility level of
  1342. the indexer.
  1343. * Repeater.cs (OnItemCommand):
  1344. (OnItemCreated):
  1345. (OnItemDataBound): Added necessary casts.
  1346. 2002-05-07 Duncan Mak <[email protected]>
  1347. * Button.cs (AddAttributesToRender):
  1348. * ImageButton.cs (AddAttributesToRender): Added a missing argument to the
  1349. GetClientValidatedEvent method.
  1350. 2002-03-27 Gaurav Vaish <[email protected]>
  1351. * Removed extra methods, corrected access modifiers to several
  1352. methods.
  1353. 2002-03-26 Gaurav Vaish <[email protected]>
  1354. * <SeveralFiles>.cs - Added some attributes
  1355. * FontUnitConverter.cs - Added stubs for GetStandardValues*(..)
  1356. methods. Will complete them later. Right now, busy with
  1357. the attributes part.
  1358. * RepeaterItem.cs - Completed.
  1359. Oh God! Mercy! I will die applying attributes. I look at the missing
  1360. part in the class-status - daemon! Kyrie eleison!
  1361. 2002-03-19 Gaurav Vaish <[email protected]>
  1362. Some bug fixes
  1363. * AdRotator.cs - Added definition for Font.
  1364. * BaseCompareValidator.cs - Added definition for Controls.
  1365. * Calendar.cs - SelectMonthText definition corrected.
  1366. * DataList.cs - Added definition for SeparatorTemplate.
  1367. * BorderStyle.cs - Namespace correction. It belongs not to UI,
  1368. but to UI.WebControls.
  1369. 2002-03-17 Gaurav Vaish <[email protected]>
  1370. Finally, I have made it. Today I did a second build for the
  1371. System.Web assembly. It compiled 195 classes today.
  1372. I am waiting eagerly for the runtime to come up so that the objects
  1373. may be tested to their last levels. Several of the methods are still
  1374. under the tag of "TODO" throwing NotImplementedException. Well, I
  1375. hope to remove them soon, but how far is this soon - even I don't
  1376. know, though I am happy to make the build a success even before
  1377. the vacations to come.
  1378. 2002-03-07 Gaurav Vaish <[email protected]>
  1379. Yesterday and today I tried to do some building of the aseembly,
  1380. but was dumped with uncoutably infinite errors. ;-)
  1381. I have put the copies of the recent errors on my home page, want
  1382. to have a look at them? See:
  1383. http://mastergaurav.virtualave.net/mono/
  1384. I don't know what to do with these errors. Oh! The buggy me! How
  1385. will I overcome myself. Hopefully, by when my vacations over, I
  1386. should have made a repository where the build will not fail.
  1387. 2002-03-05 Gaurav Vaish <[email protected]>
  1388. I am now going to do a build that will include the
  1389. System.Web.UI.WebControls namespace. Hoping that I will make it
  1390. soon. My exams are coming near and I have to pack up soon.
  1391. 2002-03-04 Gaurav Vaish <[email protected]>
  1392. Comments:
  1393. And with this, ie, today's work, all the objects mentioned in the
  1394. namespace appear in the implementation. But it may not be worth
  1395. trying to go for a build because of dependence of several of the
  1396. internal methods that may clash with already available assembly
  1397. System.Web.
  1398. Also, the classes lack possible attributes, like those informing
  1399. about child-controls etc. But I have to first create the attribute
  1400. classes before I attach the attributes to the classes.
  1401. * CustomValidator.cs - Completed. In process realized that
  1402. I have to complete / rejuvinate BaseValidator class.
  1403. * BaseValidator.cs - Complete rejuvination. Completed 80%
  1404. of the job. All that is left is Render(HtmlTextWriter),
  1405. DetermineRenderUplevel(), RegisterValidatorCommonScript()
  1406. RegisterValidatorDeclaration()
  1407. * DataGridPagerStyle.cs - Completed. That adds one more missle
  1408. in my artillery.
  1409. * DataKeyCollection.cs - Completed. Petty small.
  1410. * Repeater.cs - Work started off. This is a quite
  1411. heavy class. Hooh!
  1412. * DataGridItemEventArgs.cs,
  1413. * DataGridShortCommandEventArgs.cs,
  1414. * DataListItemEventArgs.cs,
  1415. * MonthChangedEventArgs.cs,
  1416. * RepeaterItemEventArgs.cs,
  1417. * ServerValidateEventArgs.cs,
  1418. * DataGridPageChangedEventArgs.cs
  1419. - Damn, I marked them "*", while they
  1420. did not exist.
  1421. * Repeater.cs - Done all except for an undocumented
  1422. method CreateControlHierarchy(bool). Though the method
  1423. is quite clear by its name, but it will take some time
  1424. for me to come with some material to flush in.
  1425. 2002-03-03 Gaurav Vaish <[email protected]>
  1426. * SelectedDatesCollection.cs - Completed.
  1427. * PagedDataSource.cs - Completed. Pathetically nice class.
  1428. * RegularExpressionValidator.cs
  1429. - Completed. Ridiculously small and
  1430. annoyinglyc crazy-driving class, basically the method
  1431. EvaluateIsValid().
  1432. * RangeValidator.cs - Completed.
  1433. * DataGridColumn.cs - Completed.
  1434. * EditCommandColumn.cs - All is complete except for the
  1435. InitializeCell(TableCell, int, ListItemType) method.
  1436. * DataListItem.cs - All done except for a longish method
  1437. RenderItem(HtmlTextWriter, bool, bool)
  1438. 2002-03-02 Gaurav Vaish <[email protected]>
  1439. * RepeaterItemCollection.cs - Completed.
  1440. I love *Collection classes. I am planning to make a
  1441. program that will generate a *Collection class. It's so
  1442. simple and the same. ;-)
  1443. * DataGridColumnCollection.cs - Completed.
  1444. ... except probably for *ColumnCollection classes, where
  1445. you have to put in some more effort. Still, these class
  1446. generation can be automated.
  1447. * DataListItemCollection.cs - Completed.
  1448. See, how easily, in less than a quarter of a minute, I
  1449. completed this class - manually. Copy-Paste/Cut-Replace.
  1450. 2002-02-21 Gaurav Vaish <[email protected]>
  1451. * DataGrid.cs - Following methods implemented:
  1452. TrackViewState(), LoadViewState(object), SaveViewState(),
  1453. On* -- The event raisers.
  1454. OnBubbleEvent(object, EventArgs) is still incomplete.
  1455. * DataGridItem.cs - Initial Implementation
  1456. * DataGridItemCollection.cs - Completed.
  1457. 2002-02-08 Gaurav Vaish <[email protected]>
  1458. * DataGrid.cs - Initial Implementation. Worked
  1459. primarily with some properties.
  1460. 2002-02-07 Gaurav Vaish <[email protected]>
  1461. * ListBox.cs - Completed. Implemented
  1462. LoadPostData(string, NameValueCollection)
  1463. * RequiredFieldValidator.cs - Completed. Pretty simple class.
  1464. 2002-02-06 Gaurav Vaish <[email protected]>
  1465. * ListBox.cs - Implemented the following:
  1466. RaisePostDataChangedEvent()
  1467. 2002-02-02 Gaurav Vaish <[email protected]>
  1468. * ListBox.cs - Supports the following properties:
  1469. BorderColor, BorderStyle, BorderWidth, Rows, SelectionMode,
  1470. ToolTip.
  1471. Methods:
  1472. AddAttributesToRender(HtmlTextWriter), OnPreRender(EventArgs),
  1473. RenderContents(HtmlTextWriter)
  1474. 2002-02-01 Gaurav Vaish <[email protected]>
  1475. * TargetConverter.cs - Completed
  1476. * TemplateColumn.cs - Completed
  1477. * DataList.cs - Corrected the get-er methods for the
  1478. *Style objects. Corrected the get/set-er methods for ViewState
  1479. related objects.
  1480. Addded support for properties:
  1481. GridLines, HeaderStyle, HeaderTemplate, ItemStyle, ItemTemplate,
  1482. RepeatColumns, RepeatDirection, RepeatLayout, SelectedIndex,
  1483. SelectedItem, SelectedItemStyle, SelectedItemTemplate,
  1484. SeparatorStyle, SeparatorItemTemplate.
  1485. Events:
  1486. CancelCommand, DeleteCommand, EditCommand, ItemCommand,
  1487. ItemCreated, ItemDataBound, UpdateCommand.
  1488. Methods:
  1489. CreateControlStyle(), LoadViewState(object),
  1490. SaveViewState(), TrackViewState
  1491. Event handlers:
  1492. OnBubbleEvent, OnCancelCommand, OnDeleteCommand,
  1493. OnEditCommand, OnItemCommand, OnItemCreated,
  1494. OnItemDataBound, OnUpdateCommand
  1495. Added dummy methods for some undocumented methods:
  1496. CreateControlHierarchy(bool), CreateItem(int, ListItemType),
  1497. CreateItem(int, ListItemType, bool, object),
  1498. PrepareControlHierarchy(), InitializeItem(DataListItem)
  1499. * ListBox.cs - Started working.
  1500. 2002-01-31 Gaurav Vaish <[email protected]>
  1501. * RepeaterInfo.cs - Initial Implementation. Done all
  1502. except for RepeatDirection.Vertical
  1503. * TableStyle.cs - Completed
  1504. 2002-01-30 Gaurav Vaish <[email protected]>
  1505. * DropDownList.cs - Completed
  1506. * ListItemCollection.cs - Added method FindByValueInternal to
  1507. assist in the derived classes.
  1508. Discovered bug in FindByValue. Removed
  1509. * UnitConverter.cs - Completed
  1510. * PlaceHolder.cs - What can be simpler than this?
  1511. * PlaceHolderControlBuilder.cs
  1512. - Uh! Damn cool one.
  1513. * RadioButtonList.cs - Initial Implementation. All is done
  1514. except for the implementation of
  1515. method IRepeatInfoUser.RenderItem(...)
  1516. * ValidatedControlConverter.cs
  1517. ^^^^^^^^^^^^^^^^^^^^^^^^^ - Looks complete. Doubtful though !!
  1518. * ValidationSummary.cs - Initial Implementation.
  1519. * WebColorConverter.cs - Initial Implementation
  1520. 2002-01-27 Gaurav Vaish <[email protected]>
  1521. * FontNamesConverter.cs - Completed
  1522. * FontUnitConverter.cs - Partial Implementation
  1523. * ListItemControlBuilder.cs - Completed
  1524. 2002-01-27 Gaurav Vaish <[email protected]>
  1525. * TextBox.cs - All done except *Render* methods
  1526. * TextBoxControlBuilder.cs - Completed
  1527. * Xml.cs - Partial Implementation
  1528. 2002-01-26 Gaurav Vaish <[email protected]>
  1529. * RadioButton.cs - Completed
  1530. * TextBox.cs - Partial Implementation
  1531. 2002-01-25 Gaurav Vaish <[email protected]>
  1532. * Panel.cs - Completed
  1533. * TableItemStyle.cs - Completed
  1534. 2002-01-18 Gaurav Vaish <[email protected]>
  1535. * TableCellCollection.cs - Completed
  1536. * TableRowCollection.cs - Completed
  1537. * TableHeaderCell.cs - Completed
  1538. * TableRow.cs - Completed
  1539. 2002-01-09 Gaurav Vaish <[email protected]>
  1540. * TableCellControlBuilder.cs - Completed
  1541. * Table.cs - Completed
  1542. * TableCell.cs - Completed
  1543. 2002-01-07 Gaurav Vaish <[email protected]>
  1544. * CheckBoxList.cs - Completed
  1545. * ButtonColumn.cs - Completed
  1546. * Button.cs - Completed
  1547. 2001-12-28 Gaurav Vaish <[email protected]>
  1548. * HyperLink.cs - Completed
  1549. * Image.cs - Completed
  1550. * ImageButton.cs - Completed
  1551. * Label.cs - Completed
  1552. * LabelControlBuilder.cs - Completed
  1553. * LinkButton.cs - Completed
  1554. * LinkButtonControlBuilder.cs - Completed
  1555. * Literal.cs - Completed
  1556. * LieteralControlBuilder.cs - Completed
  1557. * FontUnit.cs - Completed
  1558. 2001-12-27 Gaurav Vaish <[email protected]>
  1559. * Calendar.cs - Completed the functions of Render*,
  1560. ViewStates (Track/View/Save),
  1561. RaisePostBackEvent.
  1562. Left: RenderAllDays (partially)
  1563. 2001-12-21 Gaurav Vaish <[email protected]>
  1564. * Calendar.cs - Added some more functions
  1565. * Style.cs - Completed
  1566. * ListItem.cs - Completed
  1567. * ListItemCollection.cs - Completed
  1568. Made the first successful build of System.Web.dll that included
  1569. System.Web.UI.WebControls!
  1570. 2001-12-20 Gaurav Vaish <[email protected]>
  1571. FontInfo.cs - Complete revamp. Completed
  1572. 2001-12-19 Gaurav Vaish <[email protected]>
  1573. ListItemCollection.cs - Completed
  1574. ListItem.cs - Initial Implementation
  1575. Style.cs - Initial Implementation
  1576. Right now I am in a total mood to do a successful build. Creating so many
  1577. classes, completing classes in System.Web System.Web.UI namespaces.
  1578. 2001-12-18 Gaurav Vaish <[email protected]>
  1579. TODO - Properly added
  1580. CheckBox.cs - Completed
  1581. BaseDataList.cs - Completed
  1582. DayRenderEventArgs.cs - Completed
  1583. RepeaterItem.cs - Initial implementation
  1584. 2001-12-17 Gaurav Vaish <[email protected]>
  1585. BaseCompareValidator.cs - Completed
  1586. AdRotator.cs - Completed
  1587. 2001-12-15 Gaurav Vaish <[email protected]>
  1588. CommandEventArgs.cs - Completed
  1589. DataGridCommandEventArgs.cs - Completed
  1590. RepeaterCommandEventArgs.cs - Completed
  1591. DataListCommandEventArgs.cs - Completed
  1592. CompareValidator.cs - Partial Implementation
  1593. 2001-12-02 Gaurav Vaish <[email protected]>
  1594. CheckBoxList.cs - Partial Implementation.
  1595. All except "Render"
  1596. 2001-12-01 Gaurav Vaish <[email protected]>
  1597. ListControl.cs - Completed
  1598. 2001-11-30 Gaurav Vaish <[email protected]>
  1599. CheckBox.cs - Completed
  1600. ListControl.cs - Initial Implementation
  1601. CheckBoxList.cs - Started with it, but first needed
  1602. ListControl. Left it.
  1603. 2001-11-29 Gaurav Vaish <[email protected]>
  1604. CalendarDay.cs - Making a note that this
  1605. has been implemented
  1606. Calendar.cs - Making a note that have made some changes.
  1607. Unimplmented functions throw
  1608. NotImplementedException
  1609. CheckBox.cs - Can now "Render" and "LoadPostData"
  1610. 2001-11-08 Gaurav Vaish <[email protected]>
  1611. WebControl.cs - Total Revamp, Partial Implementation
  1612. AdRotator.cs - Able to load files
  1613. AdCreatedEventArgs.cs - Implemented
  1614. 2001-11-05 Gaurav Vaish <[email protected]>
  1615. Calendar.cs - Initial Implementation
  1616. ButtonColumn.cs - Initial Implementation
  1617. Button.cs - Initial Implementation
  1618. BoundColumn.cs - Initial Implementation
  1619. BaseCompareValidator.cs - Minor Changes
  1620. DataList.cs, BaseValidator.cs, BaseDataList.cs
  1621. - Added more functions, other changes
  1622. 2001-10-28 Gaurav Vaish <[email protected]>
  1623. WebControl.cs - Initial Implementation
  1624. DataList.cs - Initial Implementation
  1625. BaseValidator.cs - Initial Implementation
  1626. BaseDataList.cs - Initial Implementation
  1627. 2001-10-27 Gaurav Vaish <[email protected]>
  1628. AdCreatedEventArgs.cs - Initial Implementation
  1629. AdCratedEventHandler.cs - Implemented
  1630. AdRotator.cs - Initial Implementation
  1631. BorderStyle.cs - Implemented
  1632. ButtonColumnStyle.cs - Implemented
  1633. CalendarSelectionMode.cs - Implemented
  1634. DayNameFormat.cs - Implemented
  1635. FirstDayOfWeek - Implemented
  1636. FontInfo.cs - Partial Implementation
  1637. FontSize.cs - Implemented
  1638. GridLines.cs - Implemented
  1639. HorizontalAlign.cs - Implemented
  1640. HyperLink.cs - Initial Implementation
  1641. ImageAlign.cs - Implemented
  1642. IRepeatInfoUser.cs - Implemented
  1643. ListItemType.cs - Implemented
  1644. ListSelectionMode.cs - Implemented
  1645. NextPrevFormat.cs - Implemented
  1646. PagerMode.cs - Implemented
  1647. PagerPosition.cs - Implemented
  1648. RepeatDirection.cs - Implemented
  1649. RepeatLayout.cs - Implemented
  1650. TextAlign.cs - Implemented
  1651. TextBoxMode.cs - Implemented
  1652. TitleFormat.cs - Implemented
  1653. UnitType.cs - Implemented
  1654. ValidationCompareOperator.cs
  1655. - Implemented
  1656. ValidationDataType.cs - Implemented
  1657. ValidationSummaryDisplayMode.cs
  1658. - Implemented
  1659. ValidatorDisplay.cs - Implemented
  1660. VerticalAlign.cs - Implemented
  1661. i/ File Created 2001-11-13