ChangeLog 38 KB

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