I have an HtmlTextBox named htmlTextBox5 within my report, which I want to HIDE dynamically based on one of the parameters passed into the report when it is generated, Parameter2.
Basically:
if
(Parameter2.value ==
"2"
)
{
htmlTextBox5.Visible =
false
;
}
Question is how do I get Parameter2 from within the report constructor? Or should I be setting the Visible property of htmlTextBox5 somewhere else?