ChangeLog 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662
  1. 2003-01-16 Gonzalo Paniagua Javier <[email protected]>
  2. * Control.cs: fixes in UniqueID, FindControl, AddedControl,
  3. UnloadRecursive, InitRecursive. Reduced the size of __VIEWSTATE. Made
  4. FindControl work with NamingContainers.
  5. * ControlCollection.cs: notify the parent when clearing the collection.
  6. * LosFormatter.cs: Added debugging output and generate a valid
  7. viewstate even for unknown types.
  8. * Page.cs: GetPostBackEventReference now uses UniqueID. Reduced
  9. viewstate.
  10. 2003-01-10 Gonzalo Paniagua Javier <[email protected]>
  11. * Page.cs: make it fire the LoadData related events also for controls
  12. such as ImageButton, whose variable(s) in the query string are of the
  13. form ctrl_name.x and only fire them once per control.
  14. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  15. * DataBinder.cs:
  16. (GetPropertyValue): don't try to get the property as indexed
  17. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  18. * DataBinder.cs: use TypeDescriptor to get the properties and their
  19. values.
  20. 2003-01-04 Gonzalo Paniagua Javier <[email protected]>
  21. * Control.cs:
  22. (AddedControl): take the children to the same state of the parent.
  23. (InitRecursive): set the page of the children.
  24. * Page.cs: removed one line (it's done a few lines above).
  25. * UserControl.cs:
  26. (OnInit): always call InitializeAsUserControl
  27. (InitializeAsUserControl): sets the page for the control.
  28. 2003-01-03 Gonzalo Paniagua Javier <[email protected]>
  29. * Control.cs: fixed bug #36037.
  30. 2002-12-20 Gonzalo Paniagua Javier <[email protected]>
  31. * BaseParser.cs: a couple of path fixes to make it work
  32. when the page is not in the root directory.
  33. 2002-12-20 Gonzalo Paniagua Javier <[email protected]>
  34. * Control.cs: fixed PreRenderRecursiveInternal. Thanks to kojoadams for
  35. reporting the bug.
  36. 2002-12-18 Gonzalo Paniagua Javier <[email protected]>
  37. * BaseParser.cs: use MapPath and context to locate files.
  38. * Control.cs: implemented MapPathSecure.
  39. * TemplateControl.cs: use UrlUtils to generate the path.
  40. * TemplateControlParser.cs: use the context and MapPath.
  41. * UserControl.cs: implemented MapPath.
  42. * UserControlParser.cs: added context parameter to constructor.
  43. 2002-12-17 Gonzalo Paniagua Javier <[email protected]>
  44. * Control.cs: implemented MapPathSecure.
  45. * Page.cs: fixed Server property.
  46. 2002-12-15 Gonzalo Paniagua Javier <[email protected]>
  47. * DataBinder.cs: try the indexer if the property is not found in
  48. GetPropertyValue ().
  49. 2002-12-13 Gonzalo Paniagua Javier <[email protected]>
  50. * Control.cs: added AutoEventWireup internal property.
  51. * Page.cs: removed page events wire up from here.
  52. * TemplateControl.cs: new method WireupAutomaticEvents to hook up page
  53. and user controls events.
  54. * TemplateControlParser.cs: process the options that are applicable
  55. once we have the instance of the control.
  56. * TemplateParser.cs: also stores the options.
  57. * UserControl.cs: hook up events before initializing the control.
  58. 2002-12-12 Gonzalo Paniagua Javier <[email protected]>
  59. * Control.cs: new method to set bindingContainer value.
  60. * TemplateControl.cs: added controls are not binding containers.
  61. 2002-12-12 Gonzalo Paniagua Javier <[email protected]>
  62. * Control.cs: implemented TemplateSourceDirectory.
  63. * TemplateControl.cs: implemented LoadControl and LoadTemplate.
  64. 2002-11-27 Gonzalo Paniagua Javier <[email protected]>
  65. * UserControl.cs: fixed SetAttribute.
  66. * UserControlParser.cs: set the correct base type.
  67. 2002-11-26 Gonzalo Paniagua Javier <[email protected]>
  68. * TemplateParser.cs: fixed BaseType.
  69. * UserControlParser.cs: helper class to compile user controls.
  70. 2002-11-20 Gonzalo Paniagua Javier <[email protected]>
  71. * LosFormatter.cs: added DateTime to special types.
  72. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  73. * LosFormatter.cs: added array serialization support. Disabled binary
  74. serialization and add some debugging code.
  75. * StateBag.cs: the length of the list of value can be less than the
  76. length if the list of keys when remaining values are null.
  77. 2002-11-07 Gonzalo Paniagua Javier <[email protected]>
  78. * Page.cs: return something useful in GetPostBackClientEvent.
  79. 2002-11-02 Gonzalo Paniagua Javier <[email protected]>
  80. * Page.cs: implemented FileDependecies and made it protected.
  81. 2002-10-31 Gonzalo Paniagua Javier <[email protected]>
  82. * Control.cs: save control names instead of the controls
  83. themselves to the ViewState.
  84. * LosFormatter.cs: added support for serializing unknown
  85. types. BinaryFormatter does not work so you better don't store anything
  86. of unknown Type in ViewState.
  87. * Page.cs: GetViewStateString works now using LosFormatter.
  88. Complete "Control execution lifecycle" by unloading all the child
  89. controls. Check for null in RaisePostBackEvents.
  90. LoadPageViewStateFromPersistenceMedium uses LosFormatter too.
  91. 2002-10-29 Gonzalo Paniagua Javier <[email protected]>
  92. * DataBinder.cs: implemented Eval and GetIndexedPropertyValue methods.
  93. 2002-10-27 Gonzalo Paniagua Javier <[email protected]>
  94. * LosFormatter.cs: Use WebEncoding.Encoding.
  95. * Control.cs:
  96. * Page.cs: fixed namespace.
  97. 2002-10-24 Gonzalo Paniagua Javier <[email protected]>
  98. * Page.cs: set the context in ProcessRequest. Added a few trace calls.
  99. * Control.cs: added some trace information.
  100. 2002-10-08 Gonzalo Paniagua Javier <[email protected]>
  101. * SimpleHandlerFactory.cs: new handler for .ashx files.
  102. 2002-09-28 Gonzalo Paniagua Javier <[email protected]>
  103. * System.Web.UI/PageHandlerFactory.cs: new file.
  104. * System.Web.UI/PageParser.cs:
  105. * System.Web.UI/TemplateControlParser.cs: we are now able to compile
  106. pages and use HttpApplication, HttpRuntime and SimpleWorkerRequest.
  107. 2002-09-25 Gonzalo Paniagua Javier <[email protected]>
  108. * Control.cs: implemented ObBubbleEvent.
  109. * Page.cs: temporary workaround to make POST work with xsp server.
  110. 2002-09-22 Gonzalo Paniagua Javier <[email protected]>
  111. * Page.cs: fixed InvokeEventMethod now that Type.GetMethod does not
  112. return pvt methods.
  113. 2002-09-11 Gonzalo Paniagua Javier <[email protected]>
  114. * SimpleWebHandlerParser.cs: New file.
  115. * WebServiceParser.cs: New file.
  116. 2002-08-22 Gonzalo Paniagua Javier <[email protected]>
  117. * LosFormatter.cs: almost fully implemented.
  118. 2002-08-18 Gonzalo Paniagua Javier <[email protected]>
  119. * CompiledTemplateBuilder.cs: InstantiateIn is virtual.
  120. * EmptyControlCollection.cs: throw correct exception.
  121. * LosFormatter.cs: stubbed out.
  122. * OutputCacheLocation.cs: little fix.
  123. 2002-08-16 Gonzalo Paniagua Javier <[email protected]>
  124. * System.Web.UI/ApplicationFileParser.cs:
  125. * System.Web.UI/BaseParser.cs:
  126. * System.Web.UI/PageParser.cs:
  127. * System.Web.UI/TemplateControl.cs:
  128. * System.Web.UI/TemplateControlParser.cs:
  129. * System.Web.UI/TemplateParser.cs: first steps to move xsp into
  130. System.Web.
  131. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  132. * Page.cs: request to render postback script can be after form started
  133. rendering.
  134. 2002-07-22 Gonzalo Paniagua Javier <[email protected]>
  135. * Page.cs: added more page events to invoke automagically if some
  136. methods are defined.
  137. 2002-07-22 Gonzalo Paniagua Javier <[email protected]>
  138. * Control.cs:
  139. (SaveViewState): save state even when control is not visible.
  140. (SaveViewStateRecursive):
  141. (LoadViewStateRecursive): made internal.
  142. 2002-07-21 Gonzalo Paniagua Javier <[email protected]>
  143. * Page.cs: improved event raising to allow client postback for a wider
  144. variety of actions (clicking an hyperlink, ...).
  145. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  146. * UserControl.cs: implemented Load/SaveViewState.
  147. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  148. * AttributeCollection.cs:
  149. (Add): handle 'style' through styleCollection.
  150. * CssStyleCollection.cs:
  151. (fillStyle): renamed to FillStyle and made it internal.
  152. * Page.cs:
  153. (GetViewStateString): fixed, broken after other recent changes.
  154. (ProcessPostData): allow a second try for postback data after OnLoad.
  155. (ProcessRequest): clear controls collection, removed call to
  156. UnloadRecursive.
  157. 2002-07-19 Gonzalo Paniagua Javier <[email protected]>
  158. * Control.cs: uncommented Dispose.
  159. * Page.cs:
  160. (DeterminePostBackMode): more checkings.
  161. (GetPostBackClientHyperLink): implemented.
  162. (GetPostBackEventReference): added some comments with the HTML that MS
  163. generates for that.
  164. (ProcessRequest): fixed processing order. The page is unloaded after
  165. a request and regenerated from view state on subsequents posts.
  166. 2002-07-17 Gonzalo Paniagua Javier <[email protected]>
  167. * Control.cs: fixed related to ViewState. Added RemovedControl.
  168. * ControlCollection.cs: notify owner of control removal.
  169. * CssStyleCollection.cs: almost rewritten to make it render the style
  170. attribute after changes to it.
  171. * Page.cs: follow the guidelines in 'Control execution lifecycle'.
  172. Removed Xml code.
  173. * StateBag.cs: don't use IDictionary.GetEnumerator on the
  174. HybridDictionary: it makes the program give an InvalidCastException at
  175. runtime. Why?
  176. 2002-07-16 Gonzalo Paniagua Javier <[email protected]>
  177. * Page.cs: fire Init and Load events for all children.
  178. 2002-07-14 Gonzalo Paniagua Javier <[email protected]>
  179. * UserControl.cs: New file.
  180. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  181. * ControlBuilderAttribute.cs: finished implementation.
  182. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  183. * ConstructorNeedsTagAttribute.cs: the default constructor sets the
  184. property to false.
  185. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  186. * System.Web.UI/AttributeCollection.cs: added CssStyleCollection.
  187. * System.Web.UI/CssStyleCollection.cs: use a StateBag instead of a
  188. Hashtable. Added internal .ctor.
  189. * System.Web.UI/DataBinding.cs: propertyType is a Type. Implemented
  190. Equals and GetHashCode.
  191. * System.Web.UI/DataBoundLiteralControl.cs:
  192. (LoadViewState):
  193. (SaveViewState): implemented.
  194. * System.Web.UI/Page.cs: FileDependencies is not public.
  195. * System.Web.UI/ParseChildrenAttribute.cs: give a value to Default.
  196. (GetHashCode):
  197. (Equals):
  198. (IsDefaultAttribute): implemented.
  199. 2002-07-08 Gonzalo Paniagua Javier <[email protected]>
  200. * Control.cs: fixed Visible property.
  201. * Page.cs: fixed GetViewStateString.
  202. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  203. * System.Web.UI/Page.cs:
  204. (GetViewStateString): new function to give the server access to the
  205. generated view state string.
  206. (Validate): d'oh!
  207. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  208. * Control.cs:
  209. (SaveViewstateRecursive): implemented.
  210. (SaveViewState): fixed.
  211. (IParserAccessor.AddParsedSubObject): don't use 'this'.
  212. * Page.cs: added code to save view state to an xml file. It's not
  213. being used right now.
  214. 2002-06-30 Gonzalo Paniagua Javier <[email protected]>
  215. * System.Web.UI/LiteralControl.cs:
  216. Fixes based on class status page:
  217. - Add attributes (DefaultEvent, ParseChildren).
  218. - Fix declarations.
  219. - Explicitly implement some interfaces (IPostBackDataHandler
  220. and IPostBackEventHandler).
  221. - Implemented some missing methods.
  222. 2002-06-29 Gonzalo Paniagua Javier <[email protected]>
  223. * Control.cs: reimplemented FindControls.
  224. * Page.cs:
  225. (.ctor): set the page for this control.
  226. (IsPostBack): return valid value.
  227. (DeterminePostBackMode): finished.
  228. (OnFormRender): render __VIEWSTATE (uses GetTypeHashCode()).
  229. (ProcessPostData): implemented. Raises change and postback events.
  230. (ProcessRequest): changed to support reuse of the instance.
  231. (RegisterRequiresPostBack): implemented.
  232. * ValidatorCollection.cs: implemented all methods.
  233. 2002-06-25 Gonzalo Paniagua Javier <[email protected]>
  234. * Control.cs:
  235. * Page.cs: first attemp to save view state.
  236. * HtmlForm.cs: don't render Action.
  237. 2002-06-24 Gonzalo Paniagua Javier <[email protected]>
  238. * Page.cs: implemented more properties using information we already
  239. have in Context.
  240. (OnFormRender):
  241. (OnFormPostRender):
  242. (VerifyRenderingInServerForm): implemented.
  243. 2002-06-22 Gonzalo Paniagua Javier <[email protected]>
  244. * Page.cs: changed InvokeEventMethod to use a GetMethod that works with
  245. out runtime. Renamed Page_Init and Page_Load.
  246. After this, we can load a dll and render HTML in linux.
  247. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  248. * Control.cs:
  249. (AddedControl): new function that is called whenever a control is
  250. added to a collection of controls in a container. It sets the defaults
  251. except for Page.
  252. * ControlCollection.cs: call AddedControl in Add/AddAt.
  253. * DataBoundLiteralControl.cs: implemented constructor, Text, Render,
  254. SetStaticString and SetDataBoundString.
  255. * Page.cs: removed SetDefaults.
  256. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  257. * CompiledTemplateBuilder.cs: new file. Used in the code generated
  258. by xsp.
  259. * Control.cs:
  260. (BindingContainer): implemented.
  261. (EnsureChildControls): avoid stack overflow.
  262. * DataBinder.cs: implemented Eval and PropertyValue.
  263. 2002-06-18 Gonzalo Paniagua Javier <[email protected]>
  264. * HtmlTextWriter.cs: fixed style attributes rendering (almost the same
  265. bug as in regular attributes).
  266. 2002-06-17 Gonzalo Paniagua Javier <[email protected]>
  267. * Control.cs: implemented PreventAutoID.
  268. * Page.cs:
  269. (SetDefaults): don't set ID automatically if Control.PreventAutoID has
  270. been called.
  271. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  272. * Page.cs:
  273. (Validators): if the collection is null, create one.
  274. (GetPostBackEventReference 2): don't throw exception.
  275. (GetPostBackClientEvent): return a string with containing the method
  276. name, the control name and the argument.
  277. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  278. * Page.cs: SetPage is now called SetDefaults and also sets a default
  279. ID for controls that don't have one yet.
  280. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  281. * Page.cs:
  282. (GetPostBackClient):
  283. (RegisterRequiresPostBack): don't throw NotImplementedException to
  284. keep going.
  285. (ProcessRequest): set the current page as the Page property for *all*
  286. the controls, not just the direct children of the page.
  287. 2002-06-11 Gonzalo Paniagua Javier <[email protected]>
  288. * Control.cs:
  289. (MapPathSecure): until security is implemented, return the same path
  290. received as argument.
  291. (RenderControl): call OnPreRender before rendering the control. So
  292. AdRotator can read its configuration file.Is there any other place
  293. where this should be done?
  294. * HtmlTextWriter.cs:
  295. (AddAttribute): fixed. Now it really stores attributes.
  296. (RenderBeginTag): fixed a couple of bugs (little ones but hard to find).
  297. 2002-06-09 Gonzalo Paniagua Javier <[email protected]>
  298. * ControlCollection.cs:
  299. (AddAt): if index is -1 behave as a plain Add.
  300. 2002-06-06 Gonzalo Paniagua Javier <[email protected]>
  301. * Page.cs: for each child control to render, assign Control.Page.
  302. Probably also needed in HtmlContainerControl derived classes.
  303. 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
  304. * AttributeCollection.cs: don't need a Hastable. StateBag now works
  305. fine and takes care of the details.
  306. * Control.cs: added HasChildren property.
  307. * StateBag.cs: fixed a couple of nasty bugs.
  308. 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
  309. * Page.cs: run OnInit, OnLoad y PreRender before rendering the page.
  310. Invoke Page_Init and/or Page_Load if the user supplied them (though
  311. this should depend on AutoEventWireUp attribute of Page directive).
  312. 2002-06-04 Gonzalo Paniagua Javier <[email protected]>
  313. * Control.cs: don't throw exception in ControlID. By now, it returns ID.
  314. * Page.cs:
  315. (ProcessRequest): implemented.
  316. 2002-06-04 Gonzalo Paniagua Javier <[email protected]>
  317. * System.Web.UI/Page.cs: finished stubbing out. Implemented some
  318. methods.
  319. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  320. * Page.cs:
  321. (FileDependencies): now is public public.
  322. (EnableViewStateMAC): uncommented and made protected.
  323. (GetTypeHashCode): added method.
  324. 2002-05-24 Duncan Mak <[email protected]>
  325. * TemplateControl.cs (SetStringResourcePointer): Fixed typo.
  326. * StateBag.cs (Item): Changed the visibility level of the this
  327. [object] indexer.
  328. Misc. formatting edits, fixing some bugs introduced by the indentation.
  329. * DataBinder.cs (Eval)
  330. (GetIndexedPropertyValue)
  331. (GetPropertyValue): Fixed return types.
  332. 2002-05-21 Miguel de Icaza <[email protected]>
  333. * HtmlTextWriter.cs: Use this to change the member instances.
  334. 2002-05-17 Duncan Mak <[email protected]>
  335. * AttributeCollection.cs:
  336. * ControlCollection.cs:
  337. * CssStyleCollection.cs:
  338. * DataBindingCollection.cs:
  339. * EmptyControlCollection.cs: Added missing Collection classes.
  340. 2002-05-17 Duncan Mak <[email protected]>
  341. * BaseParser.cs:
  342. * TemplateParser.cs: Implemented. BaseParser is weird because
  343. there is no documentation on what it does.
  344. * ControlBuilder.cs:
  345. * DataBinder.cs:
  346. * DataBinding.cs: Added.
  347. * DataBoundLiteralControl.cs:
  348. * Triplet.cs: Added.
  349. * RenderMethod.cs: Added this delegate for Control.cs
  350. 2002-05-15 Gonzalo Paniagua Javier <[email protected]>
  351. * ValidationPropertyAttribute.cs: a couple of fixes to make it compile.
  352. 2002-05-14 Duncan Mak <[email protected]>
  353. * ValidationPropertyAttribute.cs: Added to CVS.
  354. 2002-05-10 Duncan Mak <[email protected]>
  355. * ConstructorNeedsTagAttribute.cs:
  356. * ControlBuilderAttribute.cs:
  357. * ImageClickEventArgs.cs:
  358. * ParseChildrenAttribute.cs:
  359. * PartialCachingAttribute.cs:
  360. * PersistChildrenAttribute.cs:
  361. * PersistenceModeAttribute.cs:
  362. * TemplateContainerAttribute.cs: Added to CVS.
  363. * PersistanceMode.cs: Removed, fixed typo.
  364. * PersistenceMode.cs: Replacing above.
  365. * StateBag.cs (this): Fixed indexer, it takes a string as the
  366. index, not an object.
  367. * ValidatorCollection.cs: Fixed typo, ValidatedCollection to ValidatorCollection.
  368. * Page.cs (Validators): return type should be ValidatorCollection,
  369. not ValidatedCollection.
  370. * TagPrefixAttribute.cs: Added to CVS.
  371. 2002-05-07 Duncan Mak <[email protected]>
  372. * Utils.cs (GetClientValidatedEvent): Uncommented the 'Page' argument.
  373. 2002-03-26 Gaurav Vaish <[email protected]>
  374. * DataBindingHandlerAttribute.cs
  375. - Completed
  376. * ToolboxDataAttribute.cs - Completed
  377. 2002-01-03 Nick Drochak <[email protected]>
  378. * DesignTimeParseData.cs: initialze static member to avoid compile
  379. error
  380. * PropertyConverter.cs: remove uneeded exception variables from
  381. catch blocks.
  382. 2002-01-02 Nick Drochak <[email protected]>
  383. * DesignTimeParseData.cs: fix header to show correct class name
  384. 2001-12-21 Gaurav Vaish <[email protected]>
  385. * StateBag.cs - Completed
  386. 2001-12-19 Gaurav Vaish <[email protected]>
  387. * Pair.cs - Small undocumented class. Completed.
  388. 2001-12-18 Gaurav Vaish <[email protected]>
  389. * DesignTimeParseData.cs - Initial implementation
  390. * StateBag.cs - Initial implementation
  391. 2001-12-17 Gaurav Vaish <[email protected]>
  392. * PropertyConverter.cs - Undocumented class. Completed.
  393. * Utils.cs - Undocumented, private class.
  394. Initial implementation
  395. 2001-08-28 Bob Smith <[email protected]>
  396. * Control.cs: Figured out some undocumented API.
  397. * Added TODO.
  398. * BuildMethod.cs: Initial implementation.
  399. * BuildTemplateMethod.cs: Initial implementation.
  400. * HtmlTextWriterAttribute.cs: Initial implementation.
  401. * HtmlTextWriterStyle.cs: Initial implementation.
  402. * HtmlTextWriterTag.cs: Initial implementation.
  403. * IAttributeAccessor.cs: Initial implementation.
  404. * IDataBindingsAccessor.cs: Initial implementation.
  405. * ImageClickEventHandler.cs: Initial implementation.
  406. * INamingContainer.cs: Initial implementation.
  407. * IParserAccessor.cs: Initial implementation.
  408. * IPostBackDataHandler.cs: Initial implementation.
  409. * IPostBackEventHandler.cs: Initial implementation.
  410. * IStateManager.cs: Initial implementation.
  411. * ITagNameToTypeMapper.cs: Initial implementation.
  412. * ITemplate.cs: Initial implementation.
  413. * IValidator.cs: Initial implementation.
  414. * OutputCacheLocation.cs: Initial implementation.
  415. * PersistanceMode.cs: Initial implementation.
  416. * StateItem.cs: Initial implementation.
  417. 2001-08-27 Bob Smith <[email protected]>
  418. * Control.cs: Bug fixes and implementations.
  419. 2001-08-24 Bob Smith <[email protected]>
  420. * Control.cs: Bug fixes.
  421. 2001-08-23 Bob Smith <[email protected]>
  422. * Control.cs: More implementation. Events reworked for performance.
  423. 2001-08-22 Bob Smith <[email protected]>
  424. * LiteralControl.cs: Implemented.
  425. * Control.cs: Even more implementation (Events). What a beast.
  426. 2001-08-20 Bob Smith <[email protected]>
  427. * Control.cs: More implementation. Not done yet. Shutter.
  428. 2001-08-17 Bob Smith <[email protected]>
  429. * Control.cs: Partial implementation.