ChangeLog 39 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165
  1. 2006-09-17 Igor Zelmanovich <[email protected]>
  2. * HtmlInputImage.cs:
  3. make rendering of the onclick attribute to consider ValidationGroup property
  4. 2006-09-17 Igor Zelmanovich <[email protected]>
  5. * HtmlInputButton.cs:
  6. make rendering of the onclick attribute to consider ValidationGroup property
  7. 2006-09-17 Igor Zelmanovich <[email protected]>
  8. * HtmlAnchor.cs:
  9. implemented CausesValidation and ValidationGroup properties
  10. 2006-09-10 Vladimir Krasnov <[email protected]>
  11. * HtmlInputFile.cs: fixed Value property
  12. 2006-08-23 Gonzalo Paniagua Javier <[email protected]>
  13. * HtmlTextArea.cs: encode the value in 1.x too. Patch by Dean Brettle.
  14. 2006-08-08 Vladimir Krasnov <[email protected]>
  15. * HtmlTable.cs:
  16. * HtmlTableRow.cs: fixed ParseChildren attribute to be compliant
  17. to .net
  18. 2006-07-12 Andrew Skiba <[email protected]>
  19. * HtmlInputControl.cs: remove obsolete #if NET_2_0
  20. 2006-06-06 Juraj Skripsky <[email protected]>
  21. * HtmlForm.cs (RenderAttributes): Sync with changes to HttpRequest.
  22. Fixes bug #78591.
  23. 2006-04-21 Gonzalo Paniagua Javier <[email protected]>
  24. * HtmlTextArea.cs: Value is HtmlEncoded/Decoded in 2.0. Fixes
  25. bug #78074.
  26. 2006-04-21 Gonzalo Paniagua Javier <[email protected]>
  27. * HtmlInputRadioButton.cs: Value returns the ID only when there's no
  28. "value" set. Fixes bug #78101.
  29. 2006-03-19 Vladimir Krasnov <[email protected]>
  30. * HtmlAnchor.cs: fixed RenderAttributes, if target attribute is empty
  31. it shouldn't be rendered
  32. * HtmlForm.cs: fixed Method, default method "post" should be added if
  33. its value null or empty string
  34. * HtmlInputImage.cs: fixed SetAtt, it removes attributes if it has null
  35. value, the fix is to remove attributes with empty string value too
  36. 2006-02-23 Chris Toshok <[email protected]>
  37. * HtmlButton.cs: fix corcompare output.
  38. * HtmlInputButton.cs: same.
  39. * HtmlInputImage.cs: same.
  40. * HtmlInputReset.cs: same.
  41. 2006-01-22 Chris Toshok <[email protected]>
  42. * HtmlInputButton.cs:
  43. s/GetPostBackClientEvent/GetPostBackEventReference.
  44. 2005-12-01 Gonzalo Paniagua Javier <[email protected]>
  45. * HtmlTableRow.cs: Cells is virtual in latest 1.1.
  46. 2005-11-30 Gonzalo Paniagua Javier <[email protected]>
  47. * HtmlTableRow.cs: fixed the same problem in bug #76815 but this time
  48. for cells.
  49. * HtmlTable.cs: moved WriteLine around.
  50. 2005-11-28 Gonzalo Paniagua Javier <[email protected]>
  51. * HtmlForm.cs: more class-status fixes.
  52. 2005-11-28 Gonzalo Paniagua Javier <[email protected]>
  53. * HtmlTextArea.cs: 'Name' is the UniqueID. Fixes bug #76802.
  54. 2005-11-28 Gonzalo Paniagua Javier <[email protected]>
  55. * HtmlTable.cs: use the base class RenderChildren, as '_rows'
  56. might not be the actual collection being used. Fixes bug #76815.
  57. 2005-11-28 Gonzalo Paniagua Javier <[email protected]>
  58. * HtmlInputFile.cs: if no one else set the encoding type for the
  59. containing form and there's a HtmlInputFile, set Enctype to
  60. 'multipart/form-data'. Fixes bug #76837.
  61. 2005-11-21 Gonzalo Paniagua Javier <[email protected]>
  62. * HtmlInputButton.cs: render the onclick attribute only when the
  63. button is a 'submit' and no validators or when the button is a
  64. 'button' and there's a registered ServerClick event. Fixes bug #76781.
  65. 2005-09-29 Gonzalo Paniagua Javier <[email protected]>
  66. * HtmlForm.cs: register the form and require viewstate hidden field to
  67. be rendered in Render() even if OnInit is not called.
  68. 2005-09-28 Gonzalo Paniagua Javier <[email protected]>
  69. * HtmlHead.cs: fix the 2.0 build.
  70. 2005-09-22 Gonzalo Paniagua Javier <[email protected]>
  71. * HtmlForm.cs: when transfering from one page to another and using
  72. cookieless session, we were doing pretty bad. Now, if the current path
  73. and the original are the same, we just use the filename. Otherwise
  74. we make the action location be relative to the original URL.
  75. 2005-09-19 Gonzalo Paniagua Javier <[email protected]>
  76. * HtmlInputButton.cs: render the onclick for doing a postback even when
  77. there are no validators.
  78. 2005-09-19 Sebastien Pouliot <[email protected]>
  79. * HtmlInputPassword.cs: Removed ctor(string) as it's not in 2.0 RC.
  80. 2005-09-19 Sebastien Pouliot <[email protected]>
  81. * HtmlAnchor.cs: Added [SupportsEventValidation] on class and
  82. [UrlProperty] on HRef property for 2.0.
  83. * HtmlButton.cs: Added [SupportsEventValidation] for 2.0.
  84. * HtmlHead.cs: Remove IPageHeader interface.
  85. * HtmlImage.cs: Added [UrlProperty] on Src property for 2.0.
  86. * HtmlInputButton.cs: Added [SupportsEventValidation] for 2.0.
  87. * HtmlInputCheckBox.cs: Added [SupportsEventValidation] for 2.0.
  88. * HtmlInputHidden.cs: Added [SupportsEventValidation] for 2.0.
  89. * HtmlInputImage.cs: Added [SupportsEventValidation] on class and
  90. [UrlProperty] on Src property for 2.0.
  91. * HtmlInputPassword.cs: Added [SupportsEventValidation].
  92. * HtmlInputRadioButton.cs: Added [SupportsEventValidation] for 2.0.
  93. * HtmlInputReset.cs: Added [SupportsEventValidation].
  94. * HtmlInputSubmit.cs: Added [SupportsEventValidation].
  95. * HtmlInputText.cs: Added [SupportsEventValidation] on class and
  96. re-enabled RenderAttribute for 2.0.
  97. * HtmlLink.cs: Added [UrlProperty] on HRef property for 2.0.
  98. * HtmlSelect.cs: Added [SupportsEventValidation] for 2.0.
  99. * HtmlTextArea.cs: Added [SupportsEventValidation] for 2.0.
  100. 2005-09-18 Chris Toshok <[email protected]>
  101. * HtmlButton.cs (RenderAttribute): make sure to use WriteAttribute
  102. instead of AddAttribute when dealing with "onclick."
  103. 2005-09-14 Sebastien Pouliot <[email protected]>
  104. * HtmlHead.cs: Fixed parameter orders for CreateStyleRule.
  105. 2005-09-11 Chris Toshok <[email protected]>
  106. * HtmlInputFile.cs (set_Value): add a message to the
  107. NotSupportedException.
  108. * HtmlInputControl.cs (RenderAttributes): add Page != null to the
  109. checks before we register our control with the
  110. __enabledControlArray JS array.
  111. 2005-09-09 Chris Toshok <[email protected]>
  112. * HtmlInputButton.cs (CausesValidation): this is stored in
  113. Attributes, not ViewState.
  114. (ValidationGroup): same.
  115. (RenderAttributes): remove CausesValidation from the list of
  116. Attributes before calling base.RenderAttributes. Don't, however,
  117. remove ValidationGroup, to replicate an MS bug.
  118. 2005-09-07 Chris Toshok <[email protected]>
  119. * HtmlForm.cs (DefaultFocus): not stored in Attributes either.
  120. (Name): not sure about this property.. the getter apparently just
  121. returns UniqueID, and the setter does nothing that I can figure
  122. out.
  123. (RenderAttributes): don't bother to remove "name", since it's not
  124. in the attributes anyway.
  125. 2005-09-07 Gonzalo Paniagua Javier <[email protected]>
  126. * HtmlInputControl.cs: use the Name property instead of the ClientID.
  127. The 'name' attribute rendered contains colons if inside a
  128. NamingContainer.
  129. 2005-09-07 Chris Toshok <[email protected]>
  130. * HtmlInputCheckBox.cs (Checked): uncomment the
  131. MinimizableAttributeTypeConverter attribute.
  132. * HtmlControl.cs (Disabled): uncomment the
  133. MinimizableAttributeTypeConverter attribute.
  134. * HtmlForm.cs (SubmitDisabledControls): remove the MonoTODO.
  135. * HtmlTableCell.cs (NoWrap): uncomment the
  136. MinimizableAttributeTypeConverter attribute.
  137. * HtmlLink.cs (Href): remove the MonoTODO.
  138. * HtmlMeta.cs (Name): remove the MonoTODO.
  139. (Scheme): same.
  140. (Render): add (pretty bogus, really..) implementation. not sure
  141. why we need this one.
  142. 2005-09-06 Chris Toshok <[email protected]>
  143. * HtmlInputControl.cs (RenderAttributes): Check Page.Form for
  144. null.
  145. 2005-09-06 Chris Toshok <[email protected]>
  146. * HtmlInputControl.cs (RenderAttributes): use ClientID instead of
  147. ID.
  148. 2005-09-06 Chris Toshok <[email protected]>
  149. * HtmlHead.cs (AddParsedSubObject): nuke, not in corcompare.
  150. (AddedControl): move the HtmlTitle logic here.
  151. (RemovedControl): clear out the title if that was the control that
  152. was removed.
  153. * HtmlLink.cs: new implementation.
  154. * HtmlMeta.cs: new implementation.
  155. 2005-09-06 Chris Toshok <[email protected]>
  156. * HtmlInputControl.cs (RenderAttributes): add ourselves to the
  157. __enabledControlArray JS array if we're currently enabled and the
  158. form is set to SubmitDisabledControls.
  159. * HtmlForm.cs (OnInit): call Page.RegisterForm here.
  160. (DetermineRenderUplevel): split this out of OnPreRender and make
  161. it internal so HtmlInputControl can call it.
  162. (OnPreRender): add handling for SubmitDisabledControls.
  163. 2005-09-05 Chris Toshok <[email protected]>
  164. * HtmlForm.cs (DefaultButton): this isn't stored as an Attribute,
  165. or in the ViewState. where then?
  166. (DefaultFocus): this one is stored in the ViewState, not as an
  167. Attribute.
  168. (SubmitDisabledControls): implement just as a boolean flag, not in
  169. the viewstate or attributes.
  170. (RenderAttributes): defaultfocus and defaultbutton are no longer
  171. in Attributes.
  172. 2005-09-04 Chris Toshok <[email protected]>
  173. * HtmlInputButton: Fix the 2.0/1.0 postback stuff the right way.
  174. * HtmlInputCheckBox: Fix the 2.0/1.0 postback stuff the right way.
  175. * HtmlInputFile.cs: Fix the 2.0/1.0 postback stuff the right way.
  176. * HtmlInputHidden.cs: Fix the 2.0/1.0 postback stuff the right
  177. way, and in OnPreRender, call Page.RegisterRequiresPostback.
  178. * HtmlInputImage.cs: Fix the 2.0/1.0 postback stuff the right way,
  179. and in OnPreRender, call Page.RegisterRequiresPostback.
  180. * HtmlInputRadioButton.cs (OnPreRender): call
  181. Page.RegisterRequiresPostback.
  182. * HtmlInputText.cs: Fix the 2.0/1.0 postback stuff the right way.
  183. Also, in OnPreRender, call Page.RegisterRequiresPostback.
  184. * HtmlTextArea.cs (OnPreRender): call
  185. Page.RegisterRequiresPostback.
  186. 2005-09-02 Chris Toshok <[email protected]>
  187. * HtmlSelect.cs: implement 2.0 DataSourceID data binding.
  188. 2005-09-02 Chris Toshok <[email protected]>
  189. * HtmlInputReset.cs (ValidationGroup): remove the MonoTODO.
  190. * htmlinputimage.cs: implement the 2.0 versions of loadpostdata,
  191. raisepostdatachangedevent, and raisepostbackevent.
  192. (validationgroup): implement.
  193. * htmlinputcheckbox.cs: implement the 2.0 versions of loadpostdata
  194. and raisepostdatachangedevent.
  195. * HtmlInputHidden.cs: implement the 2.0 versions of LoadPostData
  196. and RaisePostDataChangedEvent.
  197. * HtmlInputButton.cs (RaisePostBackEventInternal): split out the
  198. body of both RaisePostBackEvent impl's here, and fix it up so we
  199. use the property Page.Validate call in 2.0.
  200. (RaisePostBackEvent): call RaisePostBackEventInternal.
  201. (IPostBackEventHandler.RaisePostBackEvent): same.
  202. * HtmlImage.cs (Align): the test case shows that we don't need to
  203. validate input.
  204. 2005-09-01 Sebastien Pouliot <[email protected]>
  205. * HtmlTableCell.cs, HtmlTableRowCollection.cs, HtmlInputFile.cs,
  206. HtmlHead.cs, HtmlInputReset.cs, HtmlForm.cs, HtmlInputText.cs,
  207. HtmlHeadBuilder.cs, HtmlInputRadioButton.cs, HtmlAnchor.cs,
  208. HtmlButton.cs, HtmlTextArea.cs, HtmlGenericControl.cs,
  209. HtmlTableRow.cs, HtmlSelect.cs, HtmlControl.cs, HtmlImage.cs,
  210. HtmlSelectBuilder.cs, HtmlTable.cs, HtmlInputButton.cs,
  211. HtmlInputImage.cs, HtmlTableCellCollection.cs, HtmlInputCheckBox.cs,
  212. HtmlInputHidden.cs, HtmlTitle.cs, HtmlInputPassword.cs,
  213. HtmlContainerControl.cs, HtmlInputSubmit.cs: Add missing security
  214. attributes AspNetHostingPermission for Minimal level on all classes
  215. (LinkDemand) and for non-sealed classes (InheritanceDemand).
  216. 2005-08-29 Chris Toshok <[email protected]>
  217. * System.Web.UI.HtmlControls/HtmlTableCell.cs,
  218. System.Web.UI.HtmlControls/HtmlInputFile.cs,
  219. System.Web.UI.HtmlControls/HtmlForm.cs,
  220. System.Web.UI.HtmlControls/HtmlInputText.cs,
  221. System.Web.UI.HtmlControls/HtmlInputRadioButton.cs,
  222. System.Web.UI.HtmlControls/HtmlAnchor.cs,
  223. System.Web.UI.HtmlControls/HtmlButton.cs,
  224. System.Web.UI.HtmlControls/HtmlTextArea.cs,
  225. System.Web.UI.HtmlControls/HtmlGenericControl.cs,
  226. System.Web.UI.HtmlControls/HtmlSelect.cs,
  227. System.Web.UI.HtmlControls/HtmlTableRow.cs,
  228. System.Web.UI.HtmlControls/HtmlControl.cs,
  229. System.Web.UI.HtmlControls/HtmlImage.cs,
  230. System.Web.UI.HtmlControls/HtmlTable.cs,
  231. System.Web.UI.HtmlControls/HtmlInputButton.cs,
  232. System.Web.UI.HtmlControls/HtmlInputControl.cs,
  233. System.Web.UI.HtmlControls/HtmlInputImage.cs,
  234. System.Web.UI.HtmlControls/HtmlInputCheckBox.cs,
  235. System.Web.UI.HtmlControls/HtmlInputHidden.cs,
  236. System.Web.UI/Control.cs: Add WebSysDescription/WebCategory
  237. attributes.
  238. 2005-08-29 Chris Toshok <[email protected]>
  239. * HtmlInputSubmit.cs: new implementation.
  240. * HtmlInputReset.cs (ValidationGroup): implement
  241. * HtmlInputButton.cs (ValidationGroup): implement.
  242. 2005-08-29 Chris Toshok <[email protected]>
  243. * HtmlButton.cs: Fix some 2.0 Page/ClientScript obsolete warnings.
  244. * HtmlForm.cs: same.
  245. 2005-08-28 Gonzalo Paniagua Javier <[email protected]>
  246. * HtmlAnchor.cs: no need for the resolvedHRef field, as it might be set
  247. but not used. Call ResolveUrl when rendering the attributes instead.
  248. 2005-08-28 Chris Toshok <[email protected]>
  249. * HtmlHeadBuilder.cs: this is public.
  250. * HtmlSelectBuilder.cs: in 2.0 this is public.
  251. * HtmlInputButton.cs: fix boilerplate.
  252. * HtmlInputImage.cs (RaisePostBackEvent): add missing argument.
  253. (IPostBackEventHandler.RaisePostBackEvent): in 2.0, call
  254. Page.Validation(ValidationGroup).
  255. 2005-08-28 Chris Toshok <[email protected]>
  256. * HtmlInputReset.cs: mostly complete implementation.
  257. 2005-08-28 Chris Toshok <[email protected]>
  258. * HtmlInputPassword.cs: doh, make this NET_2_0 only.
  259. 2005-08-28 Chris Toshok <[email protected]>
  260. * HtmlInputPassword.cs: implement.
  261. 2005-08-28 Chris Toshok <[email protected]>
  262. * HtmlImage.cs: corcompare fixes.
  263. * HtmlInputCheckBox.cs: same.
  264. 2005-08-27 Chris Toshok <[email protected]>
  265. * HtmlControl.cs (GetAttribute, SetAttribute): implement.
  266. 2005-08-27 Chris Toshok <[email protected]>
  267. * HtmlForm.cs (DefaultButton, DefaultFocus): implement properties.
  268. (OnPreRender): figure out (hackishly) if we're uplevel rendering.
  269. If we have a default button/focus control set, register webform.js
  270. as a client script block, and emit some JS to focus the control.
  271. (RenderAttributes): verify that the DefaultButton attribute points
  272. to a valid IButtonControl implementing control. Also remove the
  273. defaultfocus/defaultbutton attributes before calling
  274. base.RenderAttributes.
  275. 2005-08-27 Kornél Pál <[email protected]>
  276. * HtmlTableCell.cs: Fixed to use Consts.
  277. 2005-08-26 Chris Toshok <[email protected]>
  278. * HtmlButton.cs (ValidationGroup): implement.
  279. (RaisePostBackEvent): gross #ifdef-iry to make sure we only have
  280. one body of the actual RaisePostBackEvent code. Also, call
  281. Page.Validate(ValidationGroup) in the 2.0 case.
  282. 2005-08-25 Miguel de Icaza <[email protected]>
  283. * HtmlHead.cs: Implement constructor, pass the tag.
  284. 2005-08-25 Sebastien Pouliot <[email protected]>
  285. * HtmlHead.cs: Fixed base class (to HtmlGenericControl).
  286. 2005-08-25 Chris Toshok <[email protected]>
  287. * HtmlForm.cs (CreateControlCollection, OnPreRender,
  288. RenderControl): implement naively, just calling base.Method.
  289. 2005-08-25 Chris Toshok <[email protected]>
  290. * HtmlForm.cs (RenderAttributes): don't strip off the stuff after
  291. the last '/' when rendering the action. Fixes comments in
  292. nGallery.
  293. 2005-08-24 Chris Toshok <[email protected]>
  294. * HtmlInputButton.cs, HtmlInputFile.cs, HtmlHead.cs,
  295. HtmlInputImage.cs, HtmlForm.cs, HtmlInputCheckBox.cs,
  296. HtmlInputHidden.cs, HtmlButton.cs, HtmlSelect.cs, HtmlControl.cs:
  297. Add MonoTODO's for all NotImplementedException's.
  298. 2005-08-18 Dick Porter <[email protected]>
  299. * HtmlTable.cs, HtmlInputButton.cs, HtmlInputFile.cs, HtmlHead.cs,
  300. HtmlInputImage.cs, HtmlForm.cs, HtmlInputText.cs,
  301. HtmlInputCheckBox.cs, HtmlAnchor.cs, HtmlInputRadioButton.cs,
  302. HtmlButton.cs, HtmlInputHidden.cs, HtmlTextArea.cs,
  303. HtmlTableRow.cs, HtmlSelect.cs, HtmlControl.cs, HtmlTitle.cs,
  304. HtmlContainerControl.cs: 2.0 API fixes and stubs and attribute fixes
  305. 2005-08-15 Sebastien Pouliot <[email protected]>
  306. * HtmlInputRadioButton.cs, HtmlInputText.cs, HtmlTextArea.cs: Renamed
  307. Load method (bad choice) to DefaultLoadPostData.
  308. 2005-08-15 Sebastien Pouliot <[email protected]>
  309. * HtmlAnchor.cs: Fixed protected RaisePostBackEvent in 2.0.
  310. * HtmlInputRadioButton.cs: Fixed Value property and LoadPostData
  311. method. Fixed support for protected LoadPostData and
  312. RaisePostDataChangedEvent in 2.0 (recursion).
  313. * HtmlInputText.cs: Fixed LoadPostData. Fixed support for protected
  314. LoadPostData and RaisePostDataChangedEvent in 2.0 (recursion).
  315. * HtmlTextArea.cs: Fixed LoadPostData. Fixed support for protected
  316. LoadPostData and RaisePostDataChangedEvent in 2.0 (recursion).
  317. 2005-08-15 Sebastien Pouliot <[email protected]>
  318. * HtmlTableCell.cs: Added "string" [TypeConverter] attribute to NoWrap
  319. for 2.0 profile. The class seems to be internal and not (yet?)
  320. implemented.
  321. 2005-08-13 Sebastien Pouliot <[email protected]>
  322. * HtmlAnchor.cs: Add Localizable attribute to 2.0 profile.
  323. * HtmlEmptyTagControlBuilder.cs: New. ControlBuilder required for
  324. (at least) HtmlInputControl in 2.0 profile.
  325. * HtmlInputControl.cs: Use a new ControlBuilder class for 2.0 profile.
  326. * HtmlInputText.cs: Fix DefaultValue attribute for 2.0 profile.
  327. 2005-08-09 Dick Porter <[email protected]>
  328. * HtmlSelect.cs: Clear databindings when adding a new one; cope
  329. with assorted combinations of empty text and value fields; write
  330. <option> tags manually to match ms HTML output. All fix nunit
  331. tests.
  332. 2005-08-08 Sebastien Pouliot <[email protected]>
  333. * HtmlInputControl.cs: Remove code to handle password (wrong place)
  334. and fixed type handling for 2.0.
  335. * HtmlInputText.cs: Added code to remove (only in 1.x) the value when
  336. the type == password. Tests indicates that the value is present for
  337. 2.0.
  338. 2005-08-05 Dick Porter <[email protected]>
  339. * HtmlSelect.cs: Fix databinding when one or other of Name and
  340. Value aren't supplied (thanks to Peter for the patch); Make
  341. <option> indenting match ms output.
  342. 2005-07-30 Ben Maurer <[email protected]>
  343. * HtmlForm.cs: Make sure we actually put the "?" in the url
  344. 2005-07-29 Dick Porter <[email protected]>
  345. * HtmlForm.cs: Simplify the rendering code by using QueryStringRaw
  346. instead of building the query string by hand
  347. 2005-07-27 Dick Porter <[email protected]>
  348. * HtmlInputCheckBox.cs: New implementation
  349. 2005-07-26 Peter Dennis Bartok <[email protected]>
  350. * HtmlSelect.cs: Added missing attributes
  351. 2005-07-26 Dick Porter <[email protected]>
  352. * HtmlSelect.cs: New implementation
  353. 2005-07-26 Miguel de Icaza <[email protected]>
  354. * HtmlForm.cs: It is possible to have keys with no values in the
  355. query string, do not try to process those on the foreach loop.
  356. The question is: what should happen if I only get the key?
  357. Example: file_with_a_form.aspx?a
  358. 2005-07-25 Peter Dennis Bartok <[email protected]>
  359. * HtmlForml.cs: Implemented UniqueID (new in sp1)
  360. * HtmlButton.cs, HtmlInputButton.cs, HtmlInputImage.cs: Attribute fixes
  361. 2005-07-24 Dick Porter <[email protected]>
  362. * HtmlForm.cs: Add the trailing query string to the form action;
  363. fixes bug shown in Test/standalone/htmlform/qs_postback.aspx
  364. 2005-07-22 Dick Porter <[email protected]>
  365. * HtmlInputFile.cs: Add assembly attributes
  366. 2005-07-21 Dick Porter <[email protected]>
  367. * HtmlImage.cs: The src attribute needs to be a relative URL;
  368. close the HTML element when rendering attributes, to match the MS
  369. impl.
  370. * HtmlForm.cs: Added assembly attributes; don't render ID twice;
  371. don't render enctype and target if they are empty strings;
  372. implement a Render overload to keep corcompare quiet.
  373. 2005-07-20 Chris Toshok <[email protected]>
  374. * HtmlForm.cs (RenderAttributes): if there are submit statements,
  375. we need to render those.
  376. * HtmlInputImage.cs: same.
  377. * HtmlInputButton.cs: hook up the client validation stuff.
  378. * HtmlButton.cs: same, except a lot more complicated due to
  379. postback handling.
  380. 2005-07-19 Dick Porter <[email protected]>
  381. * HtmlImage.cs: Added attributes; use Int32.Parse instead of
  382. Convert.ToInt32
  383. 2005-07-18 Sebastien Pouliot <[email protected]>
  384. * HtmlInputControl.cs: Fix Type when using ctor(null). Now use
  385. ControlID for Name (and not ID). Added ControlBuilder attribute.
  386. * HtmlTable.cs: Simplify check when adding controls.
  387. * HtmlTableRow.cs: Simplify check when adding controls.
  388. 2005-07-18 Jackson Harper <[email protected]>
  389. * HtmlInputHidden.cs: Use Events Add/Remove. Add DefaultEvent
  390. attribute.
  391. 2005-07-15 Jackson Harper <[email protected]>
  392. * HtmlInputImage.cs: Use Events Add/Remove. Remove uneeded
  393. constant. Update fetching from viewstate code to use new
  394. convenience method.
  395. 2005-07-15 Jackson Harper <[email protected]>
  396. * HtmlInputButton.cs: Add DefaultEventAttribute.
  397. 2005-07-15 Sebastien Pouliot <[email protected]>
  398. * HtmlInputControl.cs: Removed internal property (no more required to
  399. compile).
  400. * HtmlInputRadioButton.cs: Optimized events.
  401. * HtmlInputText.cs: Optimized events.
  402. * HtmlTable.cs: Added CultureInfo.InvariantCulture when parsing
  403. strings to integers.
  404. * HtmlTableCell.cs: Added CultureInfo.InvariantCulture when parsing
  405. strings to integers.
  406. * HtmlTextArea.cs: Optimized events.
  407. 2005-07-15 Sebastien Pouliot <[email protected]>
  408. * HtmlAnchor.cs: Added URL resolution (doesn't get me the expected
  409. result) and fixed compatibility for a weird behaviour of the HRef
  410. attribute handling. Optimized events.
  411. 2005-07-14 Jackson Harper <[email protected]>
  412. * HtmlInputButton.cs: Use Events Add/Remove. Remove Causesvalidation
  413. string constant. Use new method for accessing ViewState
  414. data. Don't remove value from the view state if it is the default.
  415. 2005-07-14 Jackson Harper <[email protected]>
  416. * HtmlButton.cs: Use Events Add/Remove. Remove Causesvalidation
  417. string constant. Use new method for accessing ViewState
  418. data. Don't remove value from the view state if it is the default.
  419. 2005-07-14 Dick Porter <[email protected]>
  420. * HtmlInputFile.cs: New implementation
  421. 2005-07-14 Jackson Harper <[email protected]>
  422. * HtmlInputControl.cs: Use ClientID for input controls name.
  423. 2005-07-14 Dick Porter <[email protected]>
  424. * HtmlForm.cs: New Implementation
  425. 2005-07-13 Sebastien Pouliot <[email protected]>
  426. * HtmlTable.cs: Added missing attributes.
  427. * HtmlTableCell.cs: Added missing attributes except for ControlBuilder
  428. as the builder's type isn't public.
  429. * HtmlInputControl.cs: Added missing attributes.
  430. * HtmlInputText.cs: Added missing attributes.
  431. * HtmlInputRadioButton.cs: Added missing attributes.
  432. * HtmlAnchor.cs: Added missing attributes.
  433. * HtmlTextArea.cs: Added missing attributes.
  434. * HtmlTableRow.cs: Added missing attributes.
  435. 2005-07-12 Sebastien Pouliot <[email protected]>
  436. * HtmlAnchor.cs: Added DefaultValue attributes.
  437. * HtmlInputControl.cs: Added DefaultValue attributes.
  438. * HtmlInputRadioButton.cs: Added DefaultValue attributes.
  439. * HtmlInputText.cs: Added DefaultValue attributes. Added method
  440. RenderAttributes in 1.1 profile.
  441. * HtmlTable.cs: Fix DefaultValue to "".
  442. * HtmlTextArea.cs: Added DefaultValue attributes.
  443. 2005-07-12 Sebastien Pouliot <[email protected]>
  444. * HtmlTableCell.cs: Added DefaultValue attributes.
  445. * HtmlTable.cs: Added DefaultValue and ParseChildren attributes.
  446. * HtmlTableRowCollection.cs: Reworked collection to share data with
  447. HtmlTable.Controls.
  448. * HtmlTableCellCollection.cs: Reworked collection to share data with
  449. HtmlTableRow.Controls.
  450. * HtmlTableRow.cs: Added DefaultValue and ParseChildren attributes.
  451. 2005-07-09 Sebastien Pouliot <[email protected]>
  452. * HtmlTableRowCollection.cs: Fixed property name to IsReadOnly.
  453. 2005-07-08 Sebastien Pouliot <[email protected]>
  454. * HtmlTextArea.cs: Use CultureInfo.InvariantCulture in ToString ().
  455. 2005-07-08 Sebastien Pouliot <[email protected]>
  456. * HtmlContainerControl.cs: Fixed removal of attribute/viewstate for
  457. "innerhtml".
  458. * HtmlTextArea.cs: New implementation.
  459. 2005-07-07 Jackson Harper <[email protected]>
  460. * HtmlInputImage.cs: New implementation.
  461. 2005-07-07 Sebastien Pouliot <[email protected]>
  462. * HtmlAnchor.cs: protected RaisePostBackEvent is in 2.0 only.
  463. * HtmlInputControl.cs: New implementation.
  464. * HtmlInputRadioButton.cs: New implementation.
  465. * HtmlInputText.cs: New implementation.
  466. 2005-07-07 Jackson Harper <[email protected]>
  467. * HtmlInputHidden.cs: New implementation.
  468. 2005-07-07 Jackson Harper <[email protected]>
  469. * HtmlAnchor.cs: Call base OnPreRender from override.
  470. 2005-07-07 Jackson Harper <[email protected]>
  471. * HtmlInputButton.cs: New implementation.
  472. 2005-07-07 Dick Porter <[email protected]>
  473. * HtmlImage.cs: New implementation
  474. 2005-07-07 Sebastien Pouliot <[email protected]>
  475. * HtmlAnchor.cs: Fixed to remove attributes properly.
  476. * HtmlTable.cs: New implementation.
  477. * HtmlTableCell.cs: New implementation.
  478. * HtmlTableCellCollection.cs: New implementation.
  479. * HtmlTableRow.cs: New implementation.
  480. * HtmlTableRowCollection.cs: New implementation.
  481. 2005-07-06 Jackson Harper <[email protected]>
  482. * HtmlButton.cs: New implementation.
  483. 2005-07-06 Sebastien Pouliot <[email protected]>
  484. * HtmlAnchor.cs: New implementation.
  485. 2005-06-08 Gonzalo Paniagua Javier <[email protected]>
  486. * HtmlTableCell.cs:
  487. * HtmlControl.cs: updates for 1.1 SP1.
  488. 2005-05-20 Gonzalo Paniagua Javier <[email protected]>
  489. * HtmlInputFile.cs: fixed typo in the setter for MaxLength. Closes bug
  490. number 74989.
  491. 2005-05-06 Lluis Sanchez Gual <[email protected]>
  492. * HtmlHead.cs: Fix warning.
  493. 2005-04-22 Lluis Sanchez Gual <[email protected]>
  494. * HtmlForm.cs: Use the new WriteSubmitStatements method from
  495. Page.ClientScript.
  496. 2005-03-11 Lluis Sanchez Gual <[email protected]>
  497. * HtmlInputButton.cs, HtmlAnchor.cs, HtmlButton.cs: Don't use
  498. Page.GetPostBackClientEvent since it is deprecated in 2.0.
  499. 2005-02-25 Lluis Sanchez Gual <[email protected]>
  500. * HtmlForm.cs: Register the form in the page, so the page knows
  501. which is the main form.
  502. 2005-02-18 Lluis Sanchez Gual <[email protected]>
  503. * HtmlHead.cs: Method name fix.
  504. 2005-01-20 Gonzalo Paniagua Javier <[email protected]>
  505. * HtmlForm.cs: submitStatements holds Hashtables.
  506. 2004-12-20 Lluis Sanchez Gual <[email protected]>
  507. * HtmlHead.cs: Implemented.
  508. * HtmlHeadBuilder.cs: Implemented.
  509. * HtmlTitle.cs: Implemented.
  510. 2004-12-15 Gonzalo Paniagua Javier <[email protected]>
  511. * HtmlForm.cs: MakeRelative() can be null. Thanks to Denis Gervaille.
  512. 2004-11-29 Gonzalo Paniagua Javier <[email protected]>
  513. * HtmlForm.cs: fixed the Action property when running a different
  514. page than the one requested (Transfer). Closes bug #69318.
  515. 2004-11-26 Lluis Sanchez Gual <[email protected]>
  516. * HtmlForm.cs: Add submit statements from the new Page.ClientScript
  517. property.
  518. 2004-06-23 Gonzalo Paniagua Javier <[email protected]>
  519. * HtmlForm.cs: disabled smartnavigation as we have no scripts to support
  520. it and failed when the browser was IE.
  521. 2004-05-14 Gonzalo Paniagua Javier <[email protected]>
  522. * HtmlForm.cs: default value for Enctype is "".
  523. * HtmlInputFile.cs: if no one set the encoding type for the HtmlForm,
  524. we set it to "multipart/form-data". Fixes bug #58359.
  525. 2004-01-15 Alon Gazit <[email protected]>
  526. * HtmlForm.cs: The property name always return the value of the
  527. property UniqueID.
  528. 2003-12-28 Alon Gazit <[email protected]>
  529. * HtmlSelect.cs: fix typo in LoadPostData().
  530. 2003-12-29 Alon Gazit <[email protected]>
  531. * HtmlInputButton.cs: update the implementation of RenderAttributes().
  532. Change the if statement that determines if the onclick script is
  533. rendered.
  534. 2003-12-28 Alon Gazit <[email protected]>
  535. * HtmlSelect.cs: add parentheses to if statement.
  536. Currently the else statement refers to the inner if statement.
  537. 2003-12-28 Alon Gazit <[email protected]>
  538. * HtmlSelect.cs: fix upper bound of for statement.
  539. 2003-12-19 Jackson Harper <[email protected]>
  540. * HtmlInputFile.cs: Do not set value when loading post data.
  541. 2003-12-14 Alon Gazit <[email protected]>
  542. * HtmlInputButton.cs: The problem was in RenderAttributes().
  543. Before adding the script to the HTML, the number of Validators should
  544. be checked. fixes bug #52158.
  545. 2003-12-07 Alon Gazit <[email protected]>
  546. * HtmlTableCell.cs: fixing a typo in NoWrap property.
  547. 2003-12-04 Jackson Harper <[email protected]>
  548. * HtmlInputRadioButton.cs: Lookup name in postadata and compare to
  549. value. This is because radio button groups are created by setting
  550. the name to the same value with each button, then on postback the
  551. value of the name is the id of the selected radio button.
  552. 2003-12-03 Gonzalo Paniagua Javier <[email protected]>
  553. * HtmlContainerControl.cs: encode/decode InnerText. Fixes bug #51653.
  554. 2003-12-03 Gonzalo Paniagua Javier <[email protected]>
  555. * HtmlSelect.cs: with the new LosFormatter, we get array types right, so
  556. remove the code used to workaround that.
  557. 2003-12-01 Jackson Harper <[email protected]>
  558. * HtmlControl.cs: Fix disabled property. Patch by Alon Gazit
  559. <[email protected]>.
  560. 2003-11-25 Gonzalo Paniagua Javier <[email protected]>
  561. * HtmlSelect.cs: don't add items without data. Patch by Alon Gazit
  562. <[email protected]>. Fixes bug #51377.
  563. 2003-11-24 Gonzalo Paniagua Javier <[email protected]>
  564. * HtmlInputRadioButton.cs: initialize event indexer. Patch by Alon Gazit
  565. <[email protected]>.
  566. 2003-10-29 Jackson Harper <[email protected]>
  567. * HtmlControl.cs: Make disabled an attribute of the control so it
  568. is rendered. This is a slightly modifed version of a patch
  569. by Yaron Shkop. Fixes bug #50160.
  570. 2003-10-16 Gonzalo Paniagua Javier <[email protected]>
  571. * HtmlTextArea.cs: fixed infinite recursion.
  572. 2003-10-13 Gonzalo Paniagua Javier <[email protected]>
  573. * HtmlForm.cs: render the onsubmit attribute.
  574. 2003-08-26 Gonzalo Paniagua Javier <[email protected]>
  575. * HtmlGenericControl.cs: ConstructorNeedsTag defaults to false so we
  576. need to pass true here. Fixes bug #47918.
  577. 2003-07-17 Andreas Nahr <[email protected]>
  578. * HtmlContainerControl.cs: Added attributes
  579. * HtmlControl.cs: Added attributes
  580. * HtmlInputControl.cs: Fixed public signature
  581. * HtmlInputRadioButton.cs: Fixed public signature
  582. * HtmlSelect.cs: Added missing attribute
  583. * HtmlTable.cs: Added missing attribute
  584. 2003-06-20 Gonzalo Paniagua Javier <[email protected]>
  585. * HtmlSelect.cs: fixed bug #44894.
  586. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  587. * HtmlImage.cs:
  588. * HtmlInputControl.cs:
  589. * HtmlSelect.cs: added control builder attribute.
  590. * HtmlSelectBuilder.cs: builder for HtmlSelect.
  591. * HtmlControlBuilder.cs: common builder for all HtmlControls.
  592. 2003-01-29 Gonzalo Paniagua Javier <[email protected]>
  593. * HtmlControl.cs: _tagName is now internal.
  594. * HtmlGenericControl.cs: use the field in HtmlControl to keep the tag
  595. name.
  596. 2003-01-17 Gonzalo Paniagua Javier <[email protected]>
  597. * System.Web.UI.HtmlControls/HtmlForm.cs: render 'action' attribute.
  598. 2003-01-03 Gonzalo Paniagua Javier <[email protected]>
  599. * HtmlInputButton.cs: fixed bug #35677.
  600. 2003-01-03 Gonzalo Paniagua Javier <[email protected]>
  601. * HtmlInputControl.cs: fixed bug #35673.
  602. 2003-01-03 Gonzalo Paniagua Javier <[email protected]>
  603. * HtmlInputText.cs: fixed bug #35670.
  604. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  605. * HtmlSelect.cs: fixed LoadViewstate.
  606. 2002-11-07 Gonzalo Paniagua Javier <[email protected]>
  607. * HtmlButton.cs: make it do a POST if the button has any ServerClick
  608. events.
  609. 2002-09-23 Gonzalo Paniagua Javier <[email protected]>
  610. * HtmlAnchor.cs:
  611. * HtmlButton.cs:
  612. * HtmlContainerControl.cs:
  613. * HtmlControl.cs:
  614. * HtmlForm.cs:
  615. * HtmlGenericControl.cs:
  616. * HtmlImage.cs:
  617. * HtmlInputButton.cs:
  618. * HtmlInputCheckBox.cs:
  619. * HtmlInputControl.cs:
  620. * HtmlInputFile.cs:
  621. * HtmlInputHidden.cs:
  622. * HtmlInputImage.cs:
  623. * HtmlInputRadioButton.cs:
  624. * HtmlInputText.cs:
  625. * HtmlSelect.cs:
  626. * HtmlTable.cs:
  627. * HtmlTableCell.cs:
  628. * HtmlTableRow.cs:
  629. * HtmlTextArea.cs: added almost all missing attributes.
  630. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  631. * HtmlControl.cs: the attributes must use ViewState as its StateBag,
  632. if not style values are lost between postbacks.
  633. 2002-07-17 Gonzalo Paniagua Javier <[email protected]>
  634. * HtmlAnchor.cs:
  635. * HtmlButton.cs:
  636. * HtmlInputButton.cs:
  637. * HtmlInputCheckBox.cs:
  638. * HtmlInputHidden.cs:
  639. * HtmlInputImage.cs:
  640. * HtmlInputText.cs:
  641. * HtmlTextArea.cs: Initialize EventHandlerList indexer.
  642. * HtmlContainerControl.cs: almost rewritten to use a LiteralControl
  643. instead of maintaining some flags and strings. Implemented
  644. LoadViewState.
  645. * HtmlControl.cs: fixed constructor and added ViewStateIgnoreCase.
  646. * HtmlSelect.cs: fixed TrackViewState, SaveViewState, SelectedIndices
  647. and Value.
  648. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  649. * HtmlGenericControl.cs: fixed TagName signature and get/set.
  650. * HtmlInputImage.cs: added attribute and fixed signature of ServerClick.
  651. * HtmlInputText.cs: added attribute.
  652. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  653. * HtmlForm.cs: don't render action attribute.
  654. 2002-07-04 Gonzalo Paniagua Javier <[email protected]>
  655. * HtmlContainerControl.cs:
  656. (CreateControlCollection): added. All containers must have a non-empty
  657. control collection.
  658. 2002-06-30 Gonzalo Paniagua Javier <[email protected]>
  659. * System.Web.UI.HtmlControls/HtmlAnchor.cs:
  660. * System.Web.UI.HtmlControls/HtmlButton.cs:
  661. * System.Web.UI.HtmlControls/HtmlControl.cs:
  662. * System.Web.UI.HtmlControls/HtmlForm.cs:
  663. * System.Web.UI.HtmlControls/HtmlGenericControl.cs:
  664. * System.Web.UI.HtmlControls/HtmlInputButton.cs:
  665. * System.Web.UI.HtmlControls/HtmlInputCheckBox.cs:
  666. * System.Web.UI.HtmlControls/HtmlInputControl.cs:
  667. * System.Web.UI.HtmlControls/HtmlInputFile.cs:
  668. * System.Web.UI.HtmlControls/HtmlInputHidden.cs:
  669. * System.Web.UI.HtmlControls/HtmlInputImage.cs:
  670. * System.Web.UI.HtmlControls/HtmlInputRadioButton.cs:
  671. * System.Web.UI.HtmlControls/HtmlInputText.cs:
  672. * System.Web.UI.HtmlControls/HtmlSelect.cs:
  673. * System.Web.UI.HtmlControls/HtmlTable.cs:
  674. * System.Web.UI.HtmlControls/HtmlTableCell.cs:
  675. * System.Web.UI.HtmlControls/HtmlTableRow.cs:
  676. * System.Web.UI.HtmlControls/HtmlTextArea.cs:
  677. Fixes based on class status page:
  678. - Add attributes (DefaultEvent, ParseChildren).
  679. - Fix declarations.
  680. - Explicitly implement some interfaces (IPostBackDataHandler
  681. and IPostBackEventHandler).
  682. - Implemented some missing methods.
  683. 2002-06-24 Gonzalo Paniagua Javier <[email protected]>
  684. * HtmlForm.cs:
  685. (RenderChildren): use OnFormRender and OnFormPostRender.
  686. 2002-06-09 Gonzalo Paniagua Javier <[email protected]>
  687. * HtmlSelect.cs:
  688. (RenderAttributes): new -> override and fixes stack overflow.
  689. (RenderChildren): only 1 option can be selected at any given time
  690. except when Multiple property is true.
  691. (Multiple): the attribute value is either "true" or "false", not
  692. "multiple".
  693. * HtmlTable.cs:
  694. (Add):
  695. (AddAt): allow HtmlTableRow as children, not HtmlTableCell.
  696. * HtmlTableCell.cs:
  697. (RenderEndTag): new -> override.
  698. * HtmlTableRow.cs:
  699. (RenderChildren): fixed another stack overflow.
  700. (RenderEndTag): new -> override.
  701. * HtmlTextArea.cs:
  702. (RenderAttributes): new -> override.
  703. 2002-06-07 Gonzalo Paniagua Javier <[email protected]>
  704. * HtmlInputHidden.cs: fixed constructor.
  705. * HtmlInputRadioButton.cs:
  706. (RenderAttributes): fixed stack overflow.
  707. (Name):
  708. (RenderedName): new -> override.
  709. (Value): new property.
  710. * HtmlInputText.cs:
  711. (RenderAttributes): fixed the same kind of stack overflow and make
  712. string comparison case insensitive.
  713. 2002-06-07 Gonzalo Paniagua Javier <[email protected]>
  714. * HtmlForm.cs: fixed name of Enctype property and render enctype
  715. enctype attribute.
  716. * HtmlInputControl.cs: tag type is "input", not "type".
  717. 2002-06-06 Gonzalo Paniagua Javier <[email protected]>
  718. * HtmlControl.cs: Render contents moved to new RenderBeginTag method,
  719. defined in MS docs.
  720. * HtmlForm.cs: Render output when no IE browser.
  721. * HtmlInputButton.cs: added constructor without arguments. Xsp used it,
  722. though now it always use the other .ctor.
  723. * HtmlInputControl.cs: cosmetic changes and implemented set_Name.
  724. 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
  725. * HtmlButton.cs: RenderAttributes is an override, not new.
  726. * HtmlContainerControl.cs: use the new Render method in HtmlControl.
  727. * HtmlControl.cs: added Render method to render the tag and its
  728. attributes. Works for container and non-containers.
  729. * HtmlImage.cs: RenderAttributes don't need to be new. Implemented
  730. Height property.
  731. 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
  732. * HtmlContainerControl.cs: some formatting and use HttpUtility.Encode
  733. instead of Page.Server to encode InnerText.
  734. 2002-06-04 Gonzalo Paniagua Javier <[email protected]>
  735. * HtmlAnchor.cs:
  736. (RenderAttributes): new -> override and fixed little bug that made
  737. it cause an stack overflow.
  738. * HtmlContainerControl.cs: reformatted and added tag and attributes
  739. rendering.
  740. * HtmlGenericControl.cs: removed TagName, which is already in
  741. HtmlControl.
  742. * HtmlTable.cs:
  743. (RenderEndTag): new -> override.
  744. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  745. * System.Web.UI.HtmlControls/HtmlForm.cs:
  746. (RenderAttributes): changed new by override.
  747. (Name): allow setting the property.
  748. 2002-05-10 Duncan Mak <[email protected]>
  749. * HtmlTableCellCollection.cs (this): Updated the indexer to return
  750. the right type, HtmlTableCell instead of HtmlTableRow.
  751. * HtmlInputImage.cs (OnServerClick): Commented out parts that
  752. won't compile.
  753. * HtmlForm.cs (RenderAttributes):
  754. (RenderChildren): Commented out code that doesn't compile.
  755. 2002-05-07 Duncan Mak <[email protected]>
  756. * HtmlSelect.cs (TrackViewState): Added 'new' keyword to avoid
  757. clashing with the method defined in the parent class.
  758. (OnDataBinding): Added missing casts.
  759. * HtmlForm.cs (Render): Fixed call too SetAttribute, need to cast
  760. 'this' to IAttributeAccessor before calling interface method.
  761. Also renamed some calls to reflect changes in the API.
  762. * HtmlControl.cs (WriteOnClickAttribute): Made it not static and
  763. fixed a typo.
  764. 2001-09-03 Leen Toelen <[email protected]>
  765. * HtmlAnchor.cs: Initial implementation.
  766. * HtmlTextArea.cs: Initial implementation.
  767. 2001-08-22 Bob Smith <[email protected]>
  768. * HtmlContainerControl.cs: Initial implementation.
  769. * HtmlControl.cs: Initial implementation.
  770. * HtmlGenericControl.cs: Initial implementation.