ChangeLog 24 KB

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