ScriptManager.ProfileService 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取与当前 ScriptManager 实例关联的 ProfileServiceManager 对象。
public:
property System::Web::UI::ProfileServiceManager ^ ProfileService { System::Web::UI::ProfileServiceManager ^ get(); };
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)]
public System.Web.UI.ProfileServiceManager ProfileService { get; }
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)>]
member this.ProfileService : System.Web.UI.ProfileServiceManager
Public ReadOnly Property ProfileService As ProfileServiceManager
属性值
当前 ScriptManager 实例的 ProfileServiceManager 对象。
- 属性
注解
ProfileServiceManager此属性返回的 对象表示向页面注册的配置文件服务。 可以在 控件或关联的ScriptManagerProxy控件中ScriptManager定义配置文件服务。
可以使用 ASP.NET 配置文件服务,也可以使用自定义配置文件服务。 通过在页面上的 元素中包含 asp:ScriptManager
元素ProfileService
,可以在标记中添加自定义服务,如以下示例所示。
<asp:ScriptManager ID="SM1" runat="server">
<ProfileService LoadProperties="propertyA,propertyB"
Path="MyProfileService.asmx" />
</asp:ScriptManager>
还可以以编程方式配置 ProfileServiceManager 对象。 服务在页面的PreRender生命周期阶段向 控件注册ScriptManager。