ChangeLog 25 KB

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