I currently have a control that is being hidden on my server side using dropdown.hide();.
hide() is a server-side method I created to hide my methods, e.g.
control.Style["display"] = "none";
How can I tell, on the server-side, if my control is hidden or not?
I’m guessing you don’t mean just doing:
And that you want to know after a postback? If that’s the case, then you can’t do it, unless you store the fact it’s hidden in a hidden input or something like that, using JavaScript.