views:

228

answers:

0

I am trying to use the ProfilePropertyLoader to display a welcome message in this format:

<SPSWC:ProfilePropertyLoader runat="server"/>
Welcome, 
<SPSWC:ProfilePropertyValue PropertyName="FirstName" ApplyFormatting="false" runat="server"/>
<SPSWC:ProfilePropertyValue PropertyName="LastName" ApplyFormatting="false" runat="server"/>!

which I have in my master page.

The site that uses both windows authentication and forms authentication. This works fine when logging in via the windows auth site, but when I attempt it using forms authentication I get an Access Denied error while logging into the site.

I even tried setting permissions of a user to full control in sharepoint but still no luck. It seems to be denying forms users (simple auth against the aspnetdb database in sql server) access to those controls.

Anyone have any ideas?