ChangeLog 39 KB

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