I have a control inside of an UpdatePanel
. The UpdatePanel
has an AsyncPostBack
trigger associated with the inner control. This works just fine.
I have another control containing a SSRS ReportViewControl
that I would like to conditionaly hide based on the results from the postback event of the UpdatePanel
mentioned above.
The ReportViewerControl
is not inside of an UpdatePanel
and I would like to keep it this way. How can I hide the ReportViewerControl
based on the postback event of an UpdatePanel
inside of another control?
I am assuming that many problems would spring up if I place the ReportViewerControl
inside of an UpdatePanel
, anyone know for sure?