Link to home
Start Free TrialLog in
Avatar of enordeng
enordeng

asked on

Asp.net MVC custom profile provider not holding

I've written an ASP.NET MVC app with a custom profile provider that works in all browsers locally (IIS Express).  When I deployed it to our intranet, it works in FF and IE, but not Chrome??  I've Googled forever and tried some things, but nothing has worked.  Has anyone heard of this?


    <profile enabled="true" defaultProvider="CustomProfileProvider" inherits="Infrastructure.Profile.CurrentUserProfile">
      <providers>
        <clear />
        <add name="CustomProfileProvider" type="Infrastructure.Profile.CustomProfileProvider" applicationName="/" />
      </providers>
      <properties>
        <add name="CurrentUserProfile" type="Infrastructure.Profile.CurrentUserProfile" allowAnonymous="true" serializeAs="Binary" />
      </properties>
    </profile>
Avatar of Roopesh Reddy
Roopesh Reddy
Flag of India image

Hi,

Weird. Custom Profile Provider doesn't depend on the browser, nor it's browser specific!

Do you see any errors? I mean in the console(F12)?

Since it's working in the local IIS in all browsers, it should be working in server too!
ASKER CERTIFIED SOLUTION
Avatar of enordeng
enordeng

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of enordeng
enordeng

ASKER

Giving up.