I am currently working on a setup with two repeaters: one that is displayed when the page first loads, and another that I want to keep hidden until a link called "Add Stuff" is clicked. My goal is to use JavaScript to make this second repeater visible upon clicking the link.
The issue I am facing is that in order for the JavaScript to manipulate the second repeater, it must be present in the page's markup. Simply setting:
<asp:Repeater Visible="false"....>
Will result in the repeater being omitted from the markup entirely.
Is there a method to show this repeater when the button is clicked using JavaScript?
Many thanks!