views:

47

answers:

1

When you create profile information for an asp.net user, it creates all the property values in 1 field. This is not the easiest thing to query. Is there a way to tell it to store the values in separate columns like Address, City, State, Zipcode instead of a column called PropertyStringValues where the value might be something like City:s:0:10State:s:10:15.....

+1  A: 

Yes, but you'll have to use a custom profile provider. This one, created by Microsoft employee Hao Kung should do what you are looking for.

beon
Yeah, I actually saw that link before. I was curious if there was just a setting for it or if you had to implement a custom membership provider. Thanks.
Xaisoft