Syntax
CSharp
VisualBasic
ManagedCPlusPlus
JSharp
Value
Return Value
The ProfileServiceManager object for the current ScriptManager instance.
Remarks
The ProfileServiceManager object that is returned by this property represents the profile service that is registered with the page. The profile service can be defined in the ScriptManager control or in an associated ScriptManagerProxy control.
You can use the ASP.NET profile service that is provided by Microsoft ASP.NET 2.0 AJAX Extensions or use a custom profile service. You can add the custom service in markup by including a <ProfileService> node inside the <asp:ScriptManager> instance on the page, as shown in the following example:
<asp:ScriptManager ID="SM1" runat="server">
<ProfileService LoadProperties="propertyA,propertyB"
Path="MyProfileService.asmx" />
</asp:ScriptManager>You can also programmatically configure the ProfileServiceManager object. Services are registered with the ScriptManager control during the page's PreRender life-cycle stage.
Assembly: System.Web.Extensions (Module: System.Web.Extensions)