So I need to add two new properties to the Profile object for asp.net membership.
I added these two items to the properties tag in web.config.
<group name="Terms">
<add name="Promotions" type="Bool" serializeAs="String" />
<add name="AcceptedTerms" type="Bool" serializeAs="string" />
</group>
In my code behind I am able to do Profile.Terms.Promotions
and call Profile.Save() with no exceptions.
However, the aspnet_Profile table does not seem to have the updated properties.
Do I need to run something on the actual database, like an update script of some sort?
Thanks in advance!
Edit by Jack:
So I found out it's an issue with my development database server. For some reason Profile info is not saving properly. So this is a whole other issue ha