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
B
C
D
<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