ChangeLog 38 KB

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