How to hide div in AccordionPane?

  • Thread starter Thread starter staeri
  • Start date Start date
S

staeri

In the content section of an AccordionPane I have a div (runat=server)
containing a link button.

I want to hide the div from code-behind (VB) but I can't figure out
the correct syntax. Can someone please help me?

Very grateful for fast response!

Best regards,

S
 
Give the <div> an id. I am not familiar with the AccordionPane. Likely, it
has a method allowing locating controls in the content by id, something like
FindControl. Once you have located the div, typecast it to HtmlControl and
set property Visible to false.


--
Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net
 
Back
Top