ChangeLog 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750
  1. 2005-08-26 Chris Toshok <[email protected]>
  2. * HtmlButton.cs (ValidationGroup): implement.
  3. (RaisePostBackEvent): gross #ifdef-iry to make sure we only have
  4. one body of the actual RaisePostBackEvent code. Also, call
  5. Page.Validate(ValidationGroup) in the 2.0 case.
  6. 2005-08-25 Miguel de Icaza <[email protected]>
  7. * HtmlHead.cs: Implement constructor, pass the tag.
  8. 2005-08-25 Sebastien Pouliot <[email protected]>
  9. * HtmlHead.cs: Fixed base class (to HtmlGenericControl).
  10. 2005-08-25 Chris Toshok <[email protected]>
  11. * HtmlForm.cs (CreateControlCollection, OnPreRender,
  12. RenderControl): implement naively, just calling base.Method.
  13. 2005-08-25 Chris Toshok <[email protected]>
  14. * HtmlForm.cs (RenderAttributes): don't strip off the stuff after
  15. the last '/' when rendering the action. Fixes comments in
  16. nGallery.
  17. 2005-08-24 Chris Toshok <[email protected]>
  18. * HtmlInputButton.cs, HtmlInputFile.cs, HtmlHead.cs,
  19. HtmlInputImage.cs, HtmlForm.cs, HtmlInputCheckBox.cs,
  20. HtmlInputHidden.cs, HtmlButton.cs, HtmlSelect.cs, HtmlControl.cs:
  21. Add MonoTODO's for all NotImplementedException's.
  22. 2005-08-18 Dick Porter <[email protected]>
  23. * HtmlTable.cs, HtmlInputButton.cs, HtmlInputFile.cs, HtmlHead.cs,
  24. HtmlInputImage.cs, HtmlForm.cs, HtmlInputText.cs,
  25. HtmlInputCheckBox.cs, HtmlAnchor.cs, HtmlInputRadioButton.cs,
  26. HtmlButton.cs, HtmlInputHidden.cs, HtmlTextArea.cs,
  27. HtmlTableRow.cs, HtmlSelect.cs, HtmlControl.cs, HtmlTitle.cs,
  28. HtmlContainerControl.cs: 2.0 API fixes and stubs and attribute fixes
  29. 2005-08-15 Sebastien Pouliot <[email protected]>
  30. * HtmlInputRadioButton.cs, HtmlInputText.cs, HtmlTextArea.cs: Renamed
  31. Load method (bad choice) to DefaultLoadPostData.
  32. 2005-08-15 Sebastien Pouliot <[email protected]>
  33. * HtmlAnchor.cs: Fixed protected RaisePostBackEvent in 2.0.
  34. * HtmlInputRadioButton.cs: Fixed Value property and LoadPostData
  35. method. Fixed support for protected LoadPostData and
  36. RaisePostDataChangedEvent in 2.0 (recursion).
  37. * HtmlInputText.cs: Fixed LoadPostData. Fixed support for protected
  38. LoadPostData and RaisePostDataChangedEvent in 2.0 (recursion).
  39. * HtmlTextArea.cs: Fixed LoadPostData. Fixed support for protected
  40. LoadPostData and RaisePostDataChangedEvent in 2.0 (recursion).
  41. 2005-08-15 Sebastien Pouliot <[email protected]>
  42. * HtmlTableCell.cs: Added "string" [TypeConverter] attribute to NoWrap
  43. for 2.0 profile. The class seems to be internal and not (yet?)
  44. implemented.
  45. 2005-08-13 Sebastien Pouliot <[email protected]>
  46. * HtmlAnchor.cs: Add Localizable attribute to 2.0 profile.
  47. * HtmlEmptyTagControlBuilder.cs: New. ControlBuilder required for
  48. (at least) HtmlInputControl in 2.0 profile.
  49. * HtmlInputControl.cs: Use a new ControlBuilder class for 2.0 profile.
  50. * HtmlInputText.cs: Fix DefaultValue attribute for 2.0 profile.
  51. 2005-08-09 Dick Porter <[email protected]>
  52. * HtmlSelect.cs: Clear databindings when adding a new one; cope
  53. with assorted combinations of empty text and value fields; write
  54. <option> tags manually to match ms HTML output. All fix nunit
  55. tests.
  56. 2005-08-08 Sebastien Pouliot <[email protected]>
  57. * HtmlInputControl.cs: Remove code to handle password (wrong place)
  58. and fixed type handling for 2.0.
  59. * HtmlInputText.cs: Added code to remove (only in 1.x) the value when
  60. the type == password. Tests indicates that the value is present for
  61. 2.0.
  62. 2005-08-05 Dick Porter <[email protected]>
  63. * HtmlSelect.cs: Fix databinding when one or other of Name and
  64. Value aren't supplied (thanks to Peter for the patch); Make
  65. <option> indenting match ms output.
  66. 2005-07-30 Ben Maurer <[email protected]>
  67. * HtmlForm.cs: Make sure we actually put the "?" in the url
  68. 2005-07-29 Dick Porter <[email protected]>
  69. * HtmlForm.cs: Simplify the rendering code by using QueryStringRaw
  70. instead of building the query string by hand
  71. 2005-07-27 Dick Porter <[email protected]>
  72. * HtmlInputCheckBox.cs: New implementation
  73. 2005-07-26 Peter Dennis Bartok <[email protected]>
  74. * HtmlSelect.cs: Added missing attributes
  75. 2005-07-26 Dick Porter <[email protected]>
  76. * HtmlSelect.cs: New implementation
  77. 2005-07-26 Miguel de Icaza <[email protected]>
  78. * HtmlForm.cs: It is possible to have keys with no values in the
  79. query string, do not try to process those on the foreach loop.
  80. The question is: what should happen if I only get the key?
  81. Example: file_with_a_form.aspx?a
  82. 2005-07-25 Peter Dennis Bartok <[email protected]>
  83. * HtmlForml.cs: Implemented UniqueID (new in sp1)
  84. * HtmlButton.cs, HtmlInputButton.cs, HtmlInputImage.cs: Attribute fixes
  85. 2005-07-24 Dick Porter <[email protected]>
  86. * HtmlForm.cs: Add the trailing query string to the form action;
  87. fixes bug shown in Test/standalone/htmlform/qs_postback.aspx
  88. 2005-07-22 Dick Porter <[email protected]>
  89. * HtmlInputFile.cs: Add assembly attributes
  90. 2005-07-21 Dick Porter <[email protected]>
  91. * HtmlImage.cs: The src attribute needs to be a relative URL;
  92. close the HTML element when rendering attributes, to match the MS
  93. impl.
  94. * HtmlForm.cs: Added assembly attributes; don't render ID twice;
  95. don't render enctype and target if they are empty strings;
  96. implement a Render overload to keep corcompare quiet.
  97. 2005-07-20 Chris Toshok <[email protected]>
  98. * HtmlForm.cs (RenderAttributes): if there are submit statements,
  99. we need to render those.
  100. * HtmlInputImage.cs: same.
  101. * HtmlInputButton.cs: hook up the client validation stuff.
  102. * HtmlButton.cs: same, except a lot more complicated due to
  103. postback handling.
  104. 2005-07-19 Dick Porter <[email protected]>
  105. * HtmlImage.cs: Added attributes; use Int32.Parse instead of
  106. Convert.ToInt32
  107. 2005-07-18 Sebastien Pouliot <[email protected]>
  108. * HtmlInputControl.cs: Fix Type when using ctor(null). Now use
  109. ControlID for Name (and not ID). Added ControlBuilder attribute.
  110. * HtmlTable.cs: Simplify check when adding controls.
  111. * HtmlTableRow.cs: Simplify check when adding controls.
  112. 2005-07-18 Jackson Harper <[email protected]>
  113. * HtmlInputHidden.cs: Use Events Add/Remove. Add DefaultEvent
  114. attribute.
  115. 2005-07-15 Jackson Harper <[email protected]>
  116. * HtmlInputImage.cs: Use Events Add/Remove. Remove uneeded
  117. constant. Update fetching from viewstate code to use new
  118. convenience method.
  119. 2005-07-15 Jackson Harper <[email protected]>
  120. * HtmlInputButton.cs: Add DefaultEventAttribute.
  121. 2005-07-15 Sebastien Pouliot <[email protected]>
  122. * HtmlInputControl.cs: Removed internal property (no more required to
  123. compile).
  124. * HtmlInputRadioButton.cs: Optimized events.
  125. * HtmlInputText.cs: Optimized events.
  126. * HtmlTable.cs: Added CultureInfo.InvariantCulture when parsing
  127. strings to integers.
  128. * HtmlTableCell.cs: Added CultureInfo.InvariantCulture when parsing
  129. strings to integers.
  130. * HtmlTextArea.cs: Optimized events.
  131. 2005-07-15 Sebastien Pouliot <[email protected]>
  132. * HtmlAnchor.cs: Added URL resolution (doesn't get me the expected
  133. result) and fixed compatibility for a weird behaviour of the HRef
  134. attribute handling. Optimized events.
  135. 2005-07-14 Jackson Harper <[email protected]>
  136. * HtmlInputButton.cs: Use Events Add/Remove. Remove Causesvalidation
  137. string constant. Use new method for accessing ViewState
  138. data. Don't remove value from the view state if it is the default.
  139. 2005-07-14 Jackson Harper <[email protected]>
  140. * HtmlButton.cs: Use Events Add/Remove. Remove Causesvalidation
  141. string constant. Use new method for accessing ViewState
  142. data. Don't remove value from the view state if it is the default.
  143. 2005-07-14 Dick Porter <[email protected]>
  144. * HtmlInputFile.cs: New implementation
  145. 2005-07-14 Jackson Harper <[email protected]>
  146. * HtmlInputControl.cs: Use ClientID for input controls name.
  147. 2005-07-14 Dick Porter <[email protected]>
  148. * HtmlForm.cs: New Implementation
  149. 2005-07-13 Sebastien Pouliot <[email protected]>
  150. * HtmlTable.cs: Added missing attributes.
  151. * HtmlTableCell.cs: Added missing attributes except for ControlBuilder
  152. as the builder's type isn't public.
  153. * HtmlInputControl.cs: Added missing attributes.
  154. * HtmlInputText.cs: Added missing attributes.
  155. * HtmlInputRadioButton.cs: Added missing attributes.
  156. * HtmlAnchor.cs: Added missing attributes.
  157. * HtmlTextArea.cs: Added missing attributes.
  158. * HtmlTableRow.cs: Added missing attributes.
  159. 2005-07-12 Sebastien Pouliot <[email protected]>
  160. * HtmlAnchor.cs: Added DefaultValue attributes.
  161. * HtmlInputControl.cs: Added DefaultValue attributes.
  162. * HtmlInputRadioButton.cs: Added DefaultValue attributes.
  163. * HtmlInputText.cs: Added DefaultValue attributes. Added method
  164. RenderAttributes in 1.1 profile.
  165. * HtmlTable.cs: Fix DefaultValue to "".
  166. * HtmlTextArea.cs: Added DefaultValue attributes.
  167. 2005-07-12 Sebastien Pouliot <[email protected]>
  168. * HtmlTableCell.cs: Added DefaultValue attributes.
  169. * HtmlTable.cs: Added DefaultValue and ParseChildren attributes.
  170. * HtmlTableRowCollection.cs: Reworked collection to share data with
  171. HtmlTable.Controls.
  172. * HtmlTableCellCollection.cs: Reworked collection to share data with
  173. HtmlTableRow.Controls.
  174. * HtmlTableRow.cs: Added DefaultValue and ParseChildren attributes.
  175. 2005-07-09 Sebastien Pouliot <[email protected]>
  176. * HtmlTableRowCollection.cs: Fixed property name to IsReadOnly.
  177. 2005-07-08 Sebastien Pouliot <[email protected]>
  178. * HtmlTextArea.cs: Use CultureInfo.InvariantCulture in ToString ().
  179. 2005-07-08 Sebastien Pouliot <[email protected]>
  180. * HtmlContainerControl.cs: Fixed removal of attribute/viewstate for
  181. "innerhtml".
  182. * HtmlTextArea.cs: New implementation.
  183. 2005-07-07 Jackson Harper <[email protected]>
  184. * HtmlInputImage.cs: New implementation.
  185. 2005-07-07 Sebastien Pouliot <[email protected]>
  186. * HtmlAnchor.cs: protected RaisePostBackEvent is in 2.0 only.
  187. * HtmlInputControl.cs: New implementation.
  188. * HtmlInputRadioButton.cs: New implementation.
  189. * HtmlInputText.cs: New implementation.
  190. 2005-07-07 Jackson Harper <[email protected]>
  191. * HtmlInputHidden.cs: New implementation.
  192. 2005-07-07 Jackson Harper <[email protected]>
  193. * HtmlAnchor.cs: Call base OnPreRender from override.
  194. 2005-07-07 Jackson Harper <[email protected]>
  195. * HtmlInputButton.cs: New implementation.
  196. 2005-07-07 Dick Porter <[email protected]>
  197. * HtmlImage.cs: New implementation
  198. 2005-07-07 Sebastien Pouliot <[email protected]>
  199. * HtmlAnchor.cs: Fixed to remove attributes properly.
  200. * HtmlTable.cs: New implementation.
  201. * HtmlTableCell.cs: New implementation.
  202. * HtmlTableCellCollection.cs: New implementation.
  203. * HtmlTableRow.cs: New implementation.
  204. * HtmlTableRowCollection.cs: New implementation.
  205. 2005-07-06 Jackson Harper <[email protected]>
  206. * HtmlButton.cs: New implementation.
  207. 2005-07-06 Sebastien Pouliot <[email protected]>
  208. * HtmlAnchor.cs: New implementation.
  209. 2005-06-08 Gonzalo Paniagua Javier <[email protected]>
  210. * HtmlTableCell.cs:
  211. * HtmlControl.cs: updates for 1.1 SP1.
  212. 2005-05-20 Gonzalo Paniagua Javier <[email protected]>
  213. * HtmlInputFile.cs: fixed typo in the setter for MaxLength. Closes bug
  214. number 74989.
  215. 2005-05-06 Lluis Sanchez Gual <[email protected]>
  216. * HtmlHead.cs: Fix warning.
  217. 2005-04-22 Lluis Sanchez Gual <[email protected]>
  218. * HtmlForm.cs: Use the new WriteSubmitStatements method from
  219. Page.ClientScript.
  220. 2005-03-11 Lluis Sanchez Gual <[email protected]>
  221. * HtmlInputButton.cs, HtmlAnchor.cs, HtmlButton.cs: Don't use
  222. Page.GetPostBackClientEvent since it is deprecated in 2.0.
  223. 2005-02-25 Lluis Sanchez Gual <[email protected]>
  224. * HtmlForm.cs: Register the form in the page, so the page knows
  225. which is the main form.
  226. 2005-02-18 Lluis Sanchez Gual <[email protected]>
  227. * HtmlHead.cs: Method name fix.
  228. 2005-01-20 Gonzalo Paniagua Javier <[email protected]>
  229. * HtmlForm.cs: submitStatements holds Hashtables.
  230. 2004-12-20 Lluis Sanchez Gual <[email protected]>
  231. * HtmlHead.cs: Implemented.
  232. * HtmlHeadBuilder.cs: Implemented.
  233. * HtmlTitle.cs: Implemented.
  234. 2004-12-15 Gonzalo Paniagua Javier <[email protected]>
  235. * HtmlForm.cs: MakeRelative() can be null. Thanks to Denis Gervaille.
  236. 2004-11-29 Gonzalo Paniagua Javier <[email protected]>
  237. * HtmlForm.cs: fixed the Action property when running a different
  238. page than the one requested (Transfer). Closes bug #69318.
  239. 2004-11-26 Lluis Sanchez Gual <[email protected]>
  240. * HtmlForm.cs: Add submit statements from the new Page.ClientScript
  241. property.
  242. 2004-06-23 Gonzalo Paniagua Javier <[email protected]>
  243. * HtmlForm.cs: disabled smartnavigation as we have no scripts to support
  244. it and failed when the browser was IE.
  245. 2004-05-14 Gonzalo Paniagua Javier <[email protected]>
  246. * HtmlForm.cs: default value for Enctype is "".
  247. * HtmlInputFile.cs: if no one set the encoding type for the HtmlForm,
  248. we set it to "multipart/form-data". Fixes bug #58359.
  249. 2004-01-15 Alon Gazit <[email protected]>
  250. * HtmlForm.cs: The property name always return the value of the
  251. property UniqueID.
  252. 2003-12-28 Alon Gazit <[email protected]>
  253. * HtmlSelect.cs: fix typo in LoadPostData().
  254. 2003-12-29 Alon Gazit <[email protected]>
  255. * HtmlInputButton.cs: update the implementation of RenderAttributes().
  256. Change the if statement that determines if the onclick script is
  257. rendered.
  258. 2003-12-28 Alon Gazit <[email protected]>
  259. * HtmlSelect.cs: add parentheses to if statement.
  260. Currently the else statement refers to the inner if statement.
  261. 2003-12-28 Alon Gazit <[email protected]>
  262. * HtmlSelect.cs: fix upper bound of for statement.
  263. 2003-12-19 Jackson Harper <[email protected]>
  264. * HtmlInputFile.cs: Do not set value when loading post data.
  265. 2003-12-14 Alon Gazit <[email protected]>
  266. * HtmlInputButton.cs: The problem was in RenderAttributes().
  267. Before adding the script to the HTML, the number of Validators should
  268. be checked. fixes bug #52158.
  269. 2003-12-07 Alon Gazit <[email protected]>
  270. * HtmlTableCell.cs: fixing a typo in NoWrap property.
  271. 2003-12-04 Jackson Harper <[email protected]>
  272. * HtmlInputRadioButton.cs: Lookup name in postadata and compare to
  273. value. This is because radio button groups are created by setting
  274. the name to the same value with each button, then on postback the
  275. value of the name is the id of the selected radio button.
  276. 2003-12-03 Gonzalo Paniagua Javier <[email protected]>
  277. * HtmlContainerControl.cs: encode/decode InnerText. Fixes bug #51653.
  278. 2003-12-03 Gonzalo Paniagua Javier <[email protected]>
  279. * HtmlSelect.cs: with the new LosFormatter, we get array types right, so
  280. remove the code used to workaround that.
  281. 2003-12-01 Jackson Harper <[email protected]>
  282. * HtmlControl.cs: Fix disabled property. Patch by Alon Gazit
  283. <[email protected]>.
  284. 2003-11-25 Gonzalo Paniagua Javier <[email protected]>
  285. * HtmlSelect.cs: don't add items without data. Patch by Alon Gazit
  286. <[email protected]>. Fixes bug #51377.
  287. 2003-11-24 Gonzalo Paniagua Javier <[email protected]>
  288. * HtmlInputRadioButton.cs: initialize event indexer. Patch by Alon Gazit
  289. <[email protected]>.
  290. 2003-10-29 Jackson Harper <[email protected]>
  291. * HtmlControl.cs: Make disabled an attribute of the control so it
  292. is rendered. This is a slightly modifed version of a patch
  293. by Yaron Shkop. Fixes bug #50160.
  294. 2003-10-16 Gonzalo Paniagua Javier <[email protected]>
  295. * HtmlTextArea.cs: fixed infinite recursion.
  296. 2003-10-13 Gonzalo Paniagua Javier <[email protected]>
  297. * HtmlForm.cs: render the onsubmit attribute.
  298. 2003-08-26 Gonzalo Paniagua Javier <[email protected]>
  299. * HtmlGenericControl.cs: ConstructorNeedsTag defaults to false so we
  300. need to pass true here. Fixes bug #47918.
  301. 2003-07-17 Andreas Nahr <[email protected]>
  302. * HtmlContainerControl.cs: Added attributes
  303. * HtmlControl.cs: Added attributes
  304. * HtmlInputControl.cs: Fixed public signature
  305. * HtmlInputRadioButton.cs: Fixed public signature
  306. * HtmlSelect.cs: Added missing attribute
  307. * HtmlTable.cs: Added missing attribute
  308. 2003-06-20 Gonzalo Paniagua Javier <[email protected]>
  309. * HtmlSelect.cs: fixed bug #44894.
  310. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  311. * HtmlImage.cs:
  312. * HtmlInputControl.cs:
  313. * HtmlSelect.cs: added control builder attribute.
  314. * HtmlSelectBuilder.cs: builder for HtmlSelect.
  315. * HtmlControlBuilder.cs: common builder for all HtmlControls.
  316. 2003-01-29 Gonzalo Paniagua Javier <[email protected]>
  317. * HtmlControl.cs: _tagName is now internal.
  318. * HtmlGenericControl.cs: use the field in HtmlControl to keep the tag
  319. name.
  320. 2003-01-17 Gonzalo Paniagua Javier <[email protected]>
  321. * System.Web.UI.HtmlControls/HtmlForm.cs: render 'action' attribute.
  322. 2003-01-03 Gonzalo Paniagua Javier <[email protected]>
  323. * HtmlInputButton.cs: fixed bug #35677.
  324. 2003-01-03 Gonzalo Paniagua Javier <[email protected]>
  325. * HtmlInputControl.cs: fixed bug #35673.
  326. 2003-01-03 Gonzalo Paniagua Javier <[email protected]>
  327. * HtmlInputText.cs: fixed bug #35670.
  328. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  329. * HtmlSelect.cs: fixed LoadViewstate.
  330. 2002-11-07 Gonzalo Paniagua Javier <[email protected]>
  331. * HtmlButton.cs: make it do a POST if the button has any ServerClick
  332. events.
  333. 2002-09-23 Gonzalo Paniagua Javier <[email protected]>
  334. * HtmlAnchor.cs:
  335. * HtmlButton.cs:
  336. * HtmlContainerControl.cs:
  337. * HtmlControl.cs:
  338. * HtmlForm.cs:
  339. * HtmlGenericControl.cs:
  340. * HtmlImage.cs:
  341. * HtmlInputButton.cs:
  342. * HtmlInputCheckBox.cs:
  343. * HtmlInputControl.cs:
  344. * HtmlInputFile.cs:
  345. * HtmlInputHidden.cs:
  346. * HtmlInputImage.cs:
  347. * HtmlInputRadioButton.cs:
  348. * HtmlInputText.cs:
  349. * HtmlSelect.cs:
  350. * HtmlTable.cs:
  351. * HtmlTableCell.cs:
  352. * HtmlTableRow.cs:
  353. * HtmlTextArea.cs: added almost all missing attributes.
  354. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  355. * HtmlControl.cs: the attributes must use ViewState as its StateBag,
  356. if not style values are lost between postbacks.
  357. 2002-07-17 Gonzalo Paniagua Javier <[email protected]>
  358. * HtmlAnchor.cs:
  359. * HtmlButton.cs:
  360. * HtmlInputButton.cs:
  361. * HtmlInputCheckBox.cs:
  362. * HtmlInputHidden.cs:
  363. * HtmlInputImage.cs:
  364. * HtmlInputText.cs:
  365. * HtmlTextArea.cs: Initialize EventHandlerList indexer.
  366. * HtmlContainerControl.cs: almost rewritten to use a LiteralControl
  367. instead of maintaining some flags and strings. Implemented
  368. LoadViewState.
  369. * HtmlControl.cs: fixed constructor and added ViewStateIgnoreCase.
  370. * HtmlSelect.cs: fixed TrackViewState, SaveViewState, SelectedIndices
  371. and Value.
  372. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  373. * HtmlGenericControl.cs: fixed TagName signature and get/set.
  374. * HtmlInputImage.cs: added attribute and fixed signature of ServerClick.
  375. * HtmlInputText.cs: added attribute.
  376. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  377. * HtmlForm.cs: don't render action attribute.
  378. 2002-07-04 Gonzalo Paniagua Javier <[email protected]>
  379. * HtmlContainerControl.cs:
  380. (CreateControlCollection): added. All containers must have a non-empty
  381. control collection.
  382. 2002-06-30 Gonzalo Paniagua Javier <[email protected]>
  383. * System.Web.UI.HtmlControls/HtmlAnchor.cs:
  384. * System.Web.UI.HtmlControls/HtmlButton.cs:
  385. * System.Web.UI.HtmlControls/HtmlControl.cs:
  386. * System.Web.UI.HtmlControls/HtmlForm.cs:
  387. * System.Web.UI.HtmlControls/HtmlGenericControl.cs:
  388. * System.Web.UI.HtmlControls/HtmlInputButton.cs:
  389. * System.Web.UI.HtmlControls/HtmlInputCheckBox.cs:
  390. * System.Web.UI.HtmlControls/HtmlInputControl.cs:
  391. * System.Web.UI.HtmlControls/HtmlInputFile.cs:
  392. * System.Web.UI.HtmlControls/HtmlInputHidden.cs:
  393. * System.Web.UI.HtmlControls/HtmlInputImage.cs:
  394. * System.Web.UI.HtmlControls/HtmlInputRadioButton.cs:
  395. * System.Web.UI.HtmlControls/HtmlInputText.cs:
  396. * System.Web.UI.HtmlControls/HtmlSelect.cs:
  397. * System.Web.UI.HtmlControls/HtmlTable.cs:
  398. * System.Web.UI.HtmlControls/HtmlTableCell.cs:
  399. * System.Web.UI.HtmlControls/HtmlTableRow.cs:
  400. * System.Web.UI.HtmlControls/HtmlTextArea.cs:
  401. Fixes based on class status page:
  402. - Add attributes (DefaultEvent, ParseChildren).
  403. - Fix declarations.
  404. - Explicitly implement some interfaces (IPostBackDataHandler
  405. and IPostBackEventHandler).
  406. - Implemented some missing methods.
  407. 2002-06-24 Gonzalo Paniagua Javier <[email protected]>
  408. * HtmlForm.cs:
  409. (RenderChildren): use OnFormRender and OnFormPostRender.
  410. 2002-06-09 Gonzalo Paniagua Javier <[email protected]>
  411. * HtmlSelect.cs:
  412. (RenderAttributes): new -> override and fixes stack overflow.
  413. (RenderChildren): only 1 option can be selected at any given time
  414. except when Multiple property is true.
  415. (Multiple): the attribute value is either "true" or "false", not
  416. "multiple".
  417. * HtmlTable.cs:
  418. (Add):
  419. (AddAt): allow HtmlTableRow as children, not HtmlTableCell.
  420. * HtmlTableCell.cs:
  421. (RenderEndTag): new -> override.
  422. * HtmlTableRow.cs:
  423. (RenderChildren): fixed another stack overflow.
  424. (RenderEndTag): new -> override.
  425. * HtmlTextArea.cs:
  426. (RenderAttributes): new -> override.
  427. 2002-06-07 Gonzalo Paniagua Javier <[email protected]>
  428. * HtmlInputHidden.cs: fixed constructor.
  429. * HtmlInputRadioButton.cs:
  430. (RenderAttributes): fixed stack overflow.
  431. (Name):
  432. (RenderedName): new -> override.
  433. (Value): new property.
  434. * HtmlInputText.cs:
  435. (RenderAttributes): fixed the same kind of stack overflow and make
  436. string comparison case insensitive.
  437. 2002-06-07 Gonzalo Paniagua Javier <[email protected]>
  438. * HtmlForm.cs: fixed name of Enctype property and render enctype
  439. enctype attribute.
  440. * HtmlInputControl.cs: tag type is "input", not "type".
  441. 2002-06-06 Gonzalo Paniagua Javier <[email protected]>
  442. * HtmlControl.cs: Render contents moved to new RenderBeginTag method,
  443. defined in MS docs.
  444. * HtmlForm.cs: Render output when no IE browser.
  445. * HtmlInputButton.cs: added constructor without arguments. Xsp used it,
  446. though now it always use the other .ctor.
  447. * HtmlInputControl.cs: cosmetic changes and implemented set_Name.
  448. 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
  449. * HtmlButton.cs: RenderAttributes is an override, not new.
  450. * HtmlContainerControl.cs: use the new Render method in HtmlControl.
  451. * HtmlControl.cs: added Render method to render the tag and its
  452. attributes. Works for container and non-containers.
  453. * HtmlImage.cs: RenderAttributes don't need to be new. Implemented
  454. Height property.
  455. 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
  456. * HtmlContainerControl.cs: some formatting and use HttpUtility.Encode
  457. instead of Page.Server to encode InnerText.
  458. 2002-06-04 Gonzalo Paniagua Javier <[email protected]>
  459. * HtmlAnchor.cs:
  460. (RenderAttributes): new -> override and fixed little bug that made
  461. it cause an stack overflow.
  462. * HtmlContainerControl.cs: reformatted and added tag and attributes
  463. rendering.
  464. * HtmlGenericControl.cs: removed TagName, which is already in
  465. HtmlControl.
  466. * HtmlTable.cs:
  467. (RenderEndTag): new -> override.
  468. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  469. * System.Web.UI.HtmlControls/HtmlForm.cs:
  470. (RenderAttributes): changed new by override.
  471. (Name): allow setting the property.
  472. 2002-05-10 Duncan Mak <[email protected]>
  473. * HtmlTableCellCollection.cs (this): Updated the indexer to return
  474. the right type, HtmlTableCell instead of HtmlTableRow.
  475. * HtmlInputImage.cs (OnServerClick): Commented out parts that
  476. won't compile.
  477. * HtmlForm.cs (RenderAttributes):
  478. (RenderChildren): Commented out code that doesn't compile.
  479. 2002-05-07 Duncan Mak <[email protected]>
  480. * HtmlSelect.cs (TrackViewState): Added 'new' keyword to avoid
  481. clashing with the method defined in the parent class.
  482. (OnDataBinding): Added missing casts.
  483. * HtmlForm.cs (Render): Fixed call too SetAttribute, need to cast
  484. 'this' to IAttributeAccessor before calling interface method.
  485. Also renamed some calls to reflect changes in the API.
  486. * HtmlControl.cs (WriteOnClickAttribute): Made it not static and
  487. fixed a typo.
  488. 2001-09-03 Leen Toelen <[email protected]>
  489. * HtmlAnchor.cs: Initial implementation.
  490. * HtmlTextArea.cs: Initial implementation.
  491. 2001-08-22 Bob Smith <[email protected]>
  492. * HtmlContainerControl.cs: Initial implementation.
  493. * HtmlControl.cs: Initial implementation.
  494. * HtmlGenericControl.cs: Initial implementation.