This documentation is archived and is not being maintained.

ScriptManager::ProfileService Property

Gets the ProfileServiceManager object that is associated with the current ScriptManager instance.

Namespace:  System.Web.UI
Assembly:  System.Web.Extensions (in System.Web.Extensions.dll)

[PersistenceModeAttribute(PersistenceMode::InnerProperty)]
public:
property ProfileServiceManager^ ProfileService {
	ProfileServiceManager^ get ();
}

Property Value

Type: System.Web.UI::ProfileServiceManager
The ProfileServiceManager object for the current ScriptManager instance.

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 or use a custom profile service. You can add the custom service in markup by including a ProfileService element inside the asp:ScriptManager element 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.

.NET Framework

Supported in: 4, 3.5

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: