How do you use ScriptManagerProxy in a custom ASP.NET control?
问题 Basically, I have created a custom control that uses an UpdatePanel, and as I understand it I need to use a ScriptManagerProxy to make it work ( since there should only be one ScriptManager per page, and is is declared in my .aspx page ).So, how do you use this beastie, is it just a matter of adding: <asp:ScriptManagerProxy ID="ScriptManagerProxy3" runat="server"> </asp:ScriptManagerProxy> to your control, or is there more to it? Could anyone please post a link to a good tutorial/example set?