I have no problems binding the ProfileInfoCollection to a gridview but the colums only include:
UserName
Size
IsAnonymous
LastUpdatedDate
LastActivityDate
I need to see all the profile common columns without creating textboxes for each. HOw can I do this?
If I try to use use the profile common collection and assign it to a gridview as the datasource I get an error:
Data source is an invalid type. It must be either an IListSource, IEnumerable, or IDataSource.
thanks
Dim profiles As ProfileInfoCollection
profiles = ProfileMana ...
Go to the complete details ...