ProfileManager.GetNumberOfProfiles Method (ProfileAuthenticationOption)
.NET Framework (current version)
Gets the number of profiles in the data source.
Assembly: System.Web (in System.Web.dll)
Parameters
- authenticationOption
-
Type:
System.Web.Profile.ProfileAuthenticationOption
One of the ProfileAuthenticationOption enumeration values, specifying whether anonymous, authenticated, or both types of profiles are returned.
The GetNumberOfProfiles method is used to retrieve a count of all of the user profiles from the data source for the application specified by the applicationName attribute in the configuration file. Use the authenticationOption parameter to specify whether you want only anonymous profiles, only authenticated profiles, or all profiles to be searched.
The following code example displays profile information for all of the profiles for the configured applicationName and also returns the number of profiles.
<%@ Page Language="C#" %> <%@ Import Namespace="System.Web.Profile" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> public void Page_Load() { TotalLabel.Text = ProfileManager.GetNumberOfProfiles(ProfileAuthenticationOption.All).ToString(); GetProfiles(); } private void GetProfiles() { ProfileGrid.DataSource = ProfileManager.GetAllProfiles(ProfileAuthenticationOption.All); ProfileGrid.DataBind(); } </script> <html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>Sample: Find Profiles</title> </head> <body> <form id="form1" runat="server"> <h3>Profile List</h3> <asp:Label id="TotalLabel" runat="server" text="0" /> Profiles found.<br /> <asp:GridView id="ProfileGrid" runat="server" CellPadding="2" CellSpacing="1" Gridlines="Both"> <HeaderStyle BackColor="darkblue" ForeColor="white" /> </asp:GridView> </form> </body> </html>
.NET Framework
Available since 2.0
Available since 2.0
Show: