ScriptManager.ProfileService Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient l'objet ProfileServiceManager associé à l'instance ScriptManager actuelle.
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
Valeur de propriété
Objet ProfileServiceManager pour l'instance ScriptManager actuelle.
- Attributs
Remarques
L’objet ProfileServiceManager retourné par cette propriété représente le service de profil inscrit auprès de la page. Le service de profil peut être défini dans le ScriptManager contrôle ou dans un contrôle associé ScriptManagerProxy .
Vous pouvez utiliser le service de profil ASP.NET ou un service de profil personnalisé. Vous pouvez ajouter le service personnalisé dans le balisage en incluant un ProfileService
élément à l’intérieur de l’élément asp:ScriptManager
sur la page, comme illustré dans l’exemple suivant.
<asp:ScriptManager ID="SM1" runat="server">
<ProfileService LoadProperties="propertyA,propertyB"
Path="MyProfileService.asmx" />
</asp:ScriptManager>
Vous pouvez également configurer l’objet ProfileServiceManager par programmation. Les services sont inscrits auprès du ScriptManager contrôle pendant l’étape du cycle de vie de PreRender la page.