Is there a way to add new profile properties to web.config at runtime? For example, if my web.config file has these elements under the <profile> node :
<properties>
<
add name="
Nickname"
type="
string"
allowAnonymous="
false"
serializeAs="
String"
/>
<add name="
Homepage"
type="
string"
allowAnonymous="
false"
serializeAs="
String"
/>
</
properties>
At runtime I would like to add:
<add name="Hobby" type="string" allowAnonymous="false" serializeAs="String"/>
I can't find a Profile method to do this.