bcweed966:
does the membership.validateuser function when it returns true; does it mean that the user is then logedin?
Hi
You mean authenticate user? Here you can find more information about Authentication in ASP.NET 2.0
http://support.microsoft.com/kb/301240
BTW, Profile can be access when you are not login. for example:
ProfileCommon p = (ProfileCommon)ProfileCommon.Create("UserNameA", true);
p.FirstName ="";
p.LastName = "";
p.Save();
Best Regards
XiaoYong Dai
Microsoft Online Community Support
Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.