Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to see .NET Users in IIS in .NET 4

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!

like image 271
Himberjack Avatar asked Nov 28 '10 09:11

Himberjack


1 Answers

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.

like image 191
Slauma Avatar answered Oct 31 '22 22:10

Slauma