ChangeLog 41 KB

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