eWorld.UI - Matt Hawley

Ramblings of Matt

Personalization Changes in VS.NET 2005 CTP

March 31, 2004 19:24 by matthaw

I started trudging my way through some more hands on labs, and when I got to the personalization HOL, the suggested web.config entries wouldn't work:

<personalization>
    <
profile
>
        <
property name="NickName" type="System.String"
/>
        <
property name="Address" type="System.String"
/>
    </
profile
>
</
personalization>

So, after doing some digging around the newsgroups...I found a thread in one of the private Whidbey newsgroups, stating that personalization had been changed, and that you need to use the following format in the CTP drop:

 

<profile>
    <properties>
        <add name="NickName" type="System.String"/>
        <add name="Address" type="System.String"/>
        <add name="SelectedTheme" type="System.String"/>
    </properties>
<
/profile>

 

Happy Whidbey Coding!



Categories: Whidbey
Actions: E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed
Comments are closed

Copyright © 2000 - 2024 , Excentrics World