1. Question: Which of the following Web.config files correctly enables the website to track the age of anonymous users in a variable of type Int32?

    A
    <anonymousIdentification enabled="true" />
    <profile>
         <properties>
             <add name="Age" type="System.Int32" allowAnonymous="true" />
         </properties>
    </profile>

    B
    <anonymousIdentification enabled="true" />
    <profile>
        <properties>
           <add name="Age" allowAnonymous="true" />
        </properties>
    </profile>

    C
    <anonymousIdentification enabled="true" />
    <profile>
       <properties>
           <add name="Age" type="System.Int32" />
       </properties>
    </profile>

    D
    <profile>
       <properties>
          <add name="Age" type="System.Int32" />
       </properties>
    </profile>

    Note: Not available
    1. Report
  2. Question: You want to create a user profile that uses a custom type as one of the profile properties. What actions must you take? (Choose all that apply.)

    A
    Mark your class as serializable.

    B
    Set the type attribute of the profile property to the fully qualified name of your custom type.

    C
    Add the group element to your profile property. Add one element to the group element for each property in your custom type. Set each element’s name to match that of a property in your custom type.

    D
    Add your custom type in the Machine.config file in the <customTypes> element.

    Note: Not available
    1. Report
Copyright © 2024. Powered by Intellect Software Ltd