ChangeLog 40 KB

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