Properties defined under a group name in Web.config file - ASP.NET Security
Q. The following group profile properties defined under a group name in Web.config file. How will you access Street and City property?
<properties>
<group name="Address">
<add name="Street" />
<add name="City" />
</group>
</properties>
- Published on 28 Jul 15a. - Profile.name.Street
- Profile.name.City
b. - Profile.Address.Street
- Profile.Address.City
c. - Address.Street
- Address.City
d. None of the above.
ANSWER: - Profile.Address.Street
- Profile.Address.City