ASP CompositeControl & ScriptManager
问题 I'm really new to the WebControl / CompositeControl world, and I have a small test class I am playing with. It's just a LinkButton that updates when clicked. Things work great when I leave it out of UpdatePanel . But when I try to run it inside I still get a full page POST response. How can I make this class work inside a UpdatePanel ? Here's the class: public class Test2 : CompositeControl { private static readonly object testButtonEvent = new object(); public event EventHandler OnTestClick