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>
 

+ Answer
+ Report
Total Preview: 1237

Copyright © 2024. Powered by Intellect Software Ltd