ChangeLog 43 KB

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