Good Morning All
Am trying to Store the username of the User that will be loged on. choose to use the Profile, and i have done the following from the Web Config file
<profile enabled ="true"> <properties> <add name ="Username" readOnly ="false" allowAnonymous ="true"/> </properties> </profile>
And am Storing the Username to the Profile like this
Profile.UserName = username;
I get an error the C# code that says
property or indexer 'System.web.ProfilerBase.Username' cannot be assigned to--it is read only
Thanks