All Questions
3 questions
1
vote
1
answer
121
views
How can I assign a property value based on another property in a composite control?
Environment: Asp.net 4.5, Webforms
I'm creating a composite control. I've exposed multiple public properties, but running into a slight problem.
Let's say I have two properties:
Public Property ...
1
vote
1
answer
927
views
Postback From Controls inside Composite Web Control
Let's say we have a composite web control with a combobox and a textbox. Is it possible to build into the control functionality such that when the text in the textbox changes, it posts back and adds ...
1
vote
1
answer
1k
views
Validator Disappears on PostBack Inside Composite Control
This should be a simple problem to fix, as it uses the same way I fixed my last problem with FooControl (below).
Basically, I want to add a derived validator I made to this composite control. It ...