怎么样正确使用ScriptManagerProxy控件?
怎么样正确使用ScriptManagerProxy控件?
在ASP.NET AJAX中,由于一个ASPX页面上只能有一个ScriptManager控件,所以在有母版页的情况下,如果需要在Master-Page和Content-Page中需要引入不同的脚本时,这就需要在Content-page中使用ScriptManagerProxy,而不是ScriptManager,ScriptManager 和 ScriptManagerProxy 是两个非常相似的控件。
主要内容
1.ScriptManagerProxy控件概述
2.简单示例
一.ScriptManagerProxy控件概述
在ASP.NET AJAX中,由于一个ASPX页面上只能有一个ScriptManager控件,所以在有Master-Page的情况下,如果需要在Master-Page和Content-Page中需要引入不同的脚本时,就需要在Content-page中使用ScriptManagerProxy,而不是ScriptManager,ScriptManagerProxy和 ScriptManager是两个非常相似的控件。简单定义形式如下:
<asp:ScriptManagerProxyid="ScriptManagerProxy1"runat="server">
<Services>
<asp:ServiceReferencePath="CalculWebService.asmx"/>
</Services>
</asp:ScriptManagerProxy>
<Services>
<asp:ServiceReferencePath="CalculWebService.asmx"/>
</Services>
</asp:ScriptManagerProxy>