Tips for Writing ASP.NET Composite Controls

xiaoxiao2021-03-06  105

Here are some tips I picked up in a Microsoft newsgroup regarding the creation of composite ASP.NET web controls. 1) My composite controls are created based on a property of my control. When the postback of a page occurs due to a button click, my CreateChildControls () method is called before the button code is executed, so if that button code changes the property in question it is already too late to reflect this in the control. Is there a way to "Invalidate" my control when this property is set so that it's child controls are recreated? A) Yes, set ChildControlsCreate to false. 2) Dropping my control onto a design surface displays only a blank control, none of the composite controls are visible at all. A) First add the following method In Order to Expose The FunctionAlity of A Protected Method in Your Component

Public new void ensurechildControls () {base.ensurechildControls (); Next add the folload attribute to your class

[Designer (MyControlDesigner)] Finally, Create A Designer Class Like SO

Public class mycontrolDesigner: controlesigner {public override string getdesigntimehtml () {(MyControl) .enSureChildControls (); return base.getdesigntimeHtml ();}}

转载请注明原文地址:https://www.9cbs.com/read-102482.html

New Post(0)