Hello,
I have a user control that's used for selecting a date range. I've placed another user control inside of that user control to generate a report from the date range selected.
When the user actually finishes the form and wants to generate the report, the properties of the second user control are assigned programically like:
MyControl.startDate = txtStartdate.Text;
inside of the event handler for the button they press.
The problem is the second user control doesn't seem to be reloading at this point and just sits there without any properties assigned to it. How do I get this second user control to refresh?
Thanks,
ghesse
I have a user control that's used for selecting a date range. I've placed another user control inside of that user control to generate a report from the date range selected.
When the user actually finishes the form and wants to generate the report, the properties of the second user control are assigned programically like:
MyControl.startDate = txtStartdate.Text;
inside of the event handler for the button they press.
The problem is the second user control doesn't seem to be reloading at this point and just sits there without any properties assigned to it. How do I get this second user control to refresh?
Thanks,
ghesse