Creating personalization groups in the web.config file : Profile Groups « Profile « ASP.NET Tutorial






<configuration>
  <system.web>
     <profile>
        <properties>
           <add name="FirstName" />
           <add name="LastName" />
           <add name="LastVisited" />
           <add name="Age" />
           <group name="MemberDetails">
              <add name="Member" />
              <add name="DateJoined" />
              <add name="PaidDuesStatus" />
              <add name="Location" />
           </group>
           <group name="FamilyDetails">
              <add name="MarriedStatus" />
              <add name="DateMarried" />
              <add name="NumberChildren" />
              <add name="Location" />
           </group>
        </properties>
    </profile>
    <authentication mode="Windows" />
  </system.web>
</configuration>








15.7.Profile Groups
15.7.1.Creating personalization groups in the web.config file
15.7.2.Creating Profile Groups