7

I have converted my web from 3.5 to 4.0 and now in the IIS - my membership management is gone (.NET USERS), where can I Manage them?

Thanks!

Himberjack
  • 5,682
  • 18
  • 71
  • 115
  • 4
    This is a duplicate of [Login fails after upgrade to ASP.net 4.0 from 3.5](http://stackoverflow.com/questions/2739196/login-fails-after-upgrade-to-asp-net-4-0-from-3-5). Short answer: the hashing algorithm has changed in 4.0, you need to put `` in your `web.config` file to use the older algorithm. – Frédéric Hamidi Nov 28 '10 at 09:25
  • I dont have problems logging in. I have problems managing them, since the .NET users icon is missing in the IIS – Himberjack Nov 28 '10 at 09:49
  • @oshafran, I see a `.NET Users` icon in the main pane of the IIS7 manager when I select the `Default Web Site`. Where are you looking for it? – Frédéric Hamidi Nov 28 '10 at 09:59
  • I have another WebSite in the IIS with 4.0 application pool and its showing only on websites with 2.0 – Himberjack Nov 28 '10 at 10:02
  • @oshafran, but neither you nor your users have any problem logging into that site? – Frédéric Hamidi Nov 28 '10 at 10:06
  • 1
    Sounds like a ServerFault issue since there is no code. – Erik Philips Nov 28 '10 at 10:38

1 Answers1

7

It might be same problem as described here. Basically IIS does not (yet) support management of users and roles if you set the application pool to .NET 4. You have to switch to a .NET 2.0 application pool and disable the targetframework 4.0 attribute in your web.config to manage users. After you are done with user management in IIS you can return to 4.0 pool and target framework settings.

Community
  • 1
  • 1
Slauma
  • 175,098
  • 59
  • 401
  • 420