This is a simple question, or not. I have a master page which has three sections, in one section is a logo gallery. There are certain pages in the site i would like to inject text in that area and remove the image gallery, can this be done with jquery in a section within a master page?
Share
One option is to access to master page programmatically in your code-behind.
Like this:
http://msdn.microsoft.com/en-us/library/c8y19k6h(v=vs.100).aspx
On the pages where you don’t want to see the image gallery, you could set visibility of that control to false.