Sign in | Join
Last post 07-05-2008 5:49 AM by jpcoliveros. 1 replies.
Sort Posts: Oldest to newest Newest to oldest
Hello,
I'm writing a asp.net website which has two roles --- student and teacher. I want define different profiles for the two roles. Could I? How to write the web.config file? Thanks.
Afaik, profiles are implemented on a per user basis, regardless of role.
To implement profiles, you must have this in your web.config file:
<profile> <properties> <add name="ZipCode" /> <add name="CityAndState" /> </properties> </profile>