With user controls on a page, I understand that every control has an impact on memory usage by storing their own state in ViewState. My question is, how much?
For example - I have a feedback form as a control on my masterpage. It is set to Visible="false" by default. A user clicks on a feedback button, and the control becomes visible while it's needed.
What would would be the relative performance impact by having control sitting there on everypage (as it's located in the masterpage), but not visible? The site I'm developing will potentially have large amounts of traffic and I wonder if I'm setting myself up for a headache later on if things become slow.
Thanks