
Signature
Teemu Keiski
ASP.NET MVP, AspInsider
Finland, EU
http://blogs.aspadvice.com/joteke
Thanks Teemu.
But I am not looking to access the child controls within the composite
control. This is definitely possible as you indicated.
What I am looking for is, I have a, say composite control with property say
Text. Now when a developer uses my control and tries to assign the Text
property through Property window, I would like to show him/her, the other
Textbox names in that web form. Say the developer has assigned (mapped) to
Textbox1, at runtime, the Text property of the composite control should take
the text value from Textbox1.
Is such a mapping possible?

Signature
NK
> Hi,
>
[quoted text clipped - 13 lines]
> > variables
> > of the web form at design time. Is this possible?
Teemu Keiski - 23 Feb 2006 20:13 GMT
Hi,
basically providing a list of controls can be done with a custom type
converter, when it would pick IDs of other controls and set such into the
property.Is that what you mean? For example similar when you set
ControlToValidate of a validator control. it shows you list of all controls
having ValidationProperty attribute applied. Yes, such is done with a custom
type copnverter.

Signature
Teemu Keiski
ASP.NET MVP, AspInsider
Finland, EU
http://blogs.aspadvice.com/joteke
> Thanks Teemu.
>
[quoted text clipped - 30 lines]
>> > variables
>> > of the web form at design time. Is this possible?