I have a bunch of LinkButton
s on an asp.net page and need to set the visibility property of all the other LinkButton
s on the page that have the same onclick attribute. I'm looking for a server side solution.
In the click handler I've gotten as far as listing the LinkButton
s on the Page
recursively but am stumped at how to tell if each LinkButton
I find does or doesn't have a matching click handler.
The EventHandler
property doesn't seem to contain any good info...
What is the best way to approach this?