ChangeLog 39 KB

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