ASP.Net Webparts: How to hide a webpart? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T07:05:51Zhttp://stackoverflow.com/feeds/question/885408http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/885408/asp-net-webparts-how-to-hide-a-webpart0ASP.Net Webparts: How to hide a webpart?Milky Joe2009-05-19T22:50:06Z2009-05-26T12:40:21Z
<p>In one of the pages in my ASP.Net 3.5 site, I need to hide a specific webpart, as it is not applicable to that page (note: the webparts are defined in the master page). I basically have three webparts within the zonetemplate contained within the <em>wpzGadgets</em> web part zone. The webpart containing the google map control needs to be hidden.</p>
<p><strong>How can I hide the webpart, in code</strong>?</p>
<p>I've tried the following:</p>
<pre><code>wpzGadgets.WebParts["googleMap"].Visible = false;
</code></pre>
<p>But that presented me with the following error:</p>
<p><em>The Visible property cannot be set on Web Part 'gwpgoogleMap'. It can only be set on a standalone Web Part.</em></p>
<p>Is it even possible to hide individual webparts?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/885408/asp-net-webparts-how-to-hide-a-webpart/910475#9104750Answer by Milky Joe for ASP.Net Webparts: How to hide a webpart?Milky Joe2009-05-26T12:40:21Z2009-05-26T12:40:21Z<p>It turned out to be an easy one to solve... All I needed to do was set the webpart's Hidden property to true!</p>