ChangeLog 37 KB

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