active questions tagged membership-provider - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T05:02:35Z http://stackoverflow.com/feeds/tag/membership-provider http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1688060/umbraco-back-office-membership-provider 0 Umbraco Back Office Membership Provider Shea Daniels 2009-11-06T14:47:10Z 2009-11-26T15:00:03Z <p>Has anyone had any experience trying to write a custom Membership Provider for the Umbraco back office? I've run into all sorts of trouble trying to make this happen. You can see some more details here:</p> <p><a href="http://umbraco.codeplex.com/WorkItem/View.aspx?WorkItemId=25232" rel="nofollow">Umbraco Issue Tracker</a></p> <p>If you made it work, what steps did you take and how did you make it get along with the <em>umbracoUsers</em> table in the database?</p> http://stackoverflow.com/questions/1220144/how-do-we-register-users-facebook-connect-users-logging-in-the-first-time-w 1 How do we register users -- Facebook Connect users logging in the first time -- when we cannot get an email address from facebook? Matt 2009-08-02T23:20:32Z 2009-11-12T15:32:38Z <p>Facebook Connect allows for very limited communication and access to the user's information. </p> <p>When a user logs in with Facebook Connect I would like to create an account for the user on our site that is linked up to their Facebook account. </p> <p>The only problem is registration (MembershipService.CreateUser(username, password, email)) <strong>requires an email address</strong>, which we do not have access to. (We let them choose a username before linking up the accounts).</p> <p>How would you register a user without having their email address? </p> <p>I would rather not make them enter it in when they link up the accounts, and I know it can be done. <a href="http://www.digg.com/" rel="nofollow">Digg</a> does a very nice job of exactly what I would like to do.</p> http://stackoverflow.com/questions/1681966/is-there-a-localized-membership-status-message-in-the-framework 0 Is there a localized membership status message in the framework? Nadjib 2009-11-05T16:50:45Z 2009-11-05T20:09:42Z <p>I'm using the membership provider to create a new user. The membership status I return can be any value from 0 to 11, each value being a different status.</p> <p>Is there a way to get a localized message from that status from the managed code? I know how to hand code it, but I wondered if it's not allready localized and ready to use from somewhere in the framework.</p> <p>For example, a success is a 0. Is there an associated message that will return that as a localized string in any language supported by the framework?</p> <p>Thanks.</p> <p>UPDATE: I'm using ASP.Net 3.5 with MVC 1.0</p> http://stackoverflow.com/questions/324752/authenticate-and-getroles-of-activedirectory-users-in-a-disconnected-wpf-applicat 3 Authenticate and GetRoles of ActiveDirectory users in a disconnected WPF application via MembershipProvider Devtron 2008-11-27T22:29:32Z 2009-11-03T04:11:02Z <p>Hello,</p> <p>I have a project requirement where I need to authenticate against ActiveDirectory in a remote/disconnected WPF application.</p> <p>There is probably several ways to attempt to do this, but what would be the best approach using ActiveDirectory's MembershipProvider?</p> <p>I need to:</p> <ol> <li>Authenticate that the user exists.</li> <li>obtain the AD user's groups and roles.</li> </ol> <p>This needs to happen from a remote location, outside of the network Active Directory resides on.</p> http://stackoverflow.com/questions/555175/how-do-i-create-use-a-membershipprovider 2 How do I create / use a MembershipProvider? KingNestor 2009-02-17T00:43:09Z 2009-10-31T19:49:22Z <p>How do you create a MembershipProvider for use in an ASP.NET/MVC website?</p> <p>Doesn't it generate the tables it needs for you in your database?</p> http://stackoverflow.com/questions/1651816/how-do-i-set-minumum-password-requirements-in-umbraco-for-the-membership-provider 1 How do I set minumum password requirements in Umbraco for the membership provider? jlech 2009-10-30T19:21:43Z 2009-10-30T20:00:32Z <p>I am trying to set minimum password requirements for my membership provider in Umbraco. Currently my web.config membership section looks like this:</p> <pre><code> &lt;membership defaultProvider="UmbracoMembershipProvider" userIsOnlineTimeWindow="15"&gt; &lt;providers&gt; &lt;clear /&gt; &lt;add name="UmbracoMembershipProvider" type="umbraco.providers.members.UmbracoMembershipProvider" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" defaultMemberTypeAlias="Another Type" passwordFormat="Hashed" minRequiredPasswordLength="7" minRequiredNonalphanumericCharacters="1" /&gt; &lt;add name="UsersMembershipProvider" type="umbraco.providers.UsersMembershipProvider" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" passwordFormat="Hashed" minRequiredPasswordLength="7" minRequiredNonalphanumericCharacters="1" /&gt; &lt;/providers&gt; &lt;/membership&gt; </code></pre> <p>However, when I login in through the website and change my password, it will let me use a password of any length and makeup. Is there something I'm missing? Thanks!</p> http://stackoverflow.com/questions/1587408/security-using-the-membership-provider-that-will-support-active-directory-and-you 1 Security using the Membership provider that will support Active Directory and your own bespoke provider Coppermill 2009-10-19T07:45:26Z 2009-10-26T19:32:56Z <p>I have a task of dealing with security on my .Net web application, the way it is to work is that if the user is logged in to Active Directory and the users AD name is in a database then they will be let in.</p> <p>On the same bases if the users AD name is not in the database then they will be asked to login, with a user name and password, held in the database.</p> <p>So I need some kind of mix mode security login using the Membership and Role provider.</p> <p>Where I am having trouble is where do you detect if a user can login using AD, so they get logged in automatically.</p> http://stackoverflow.com/questions/1556278/structuring-custom-asp-net-membershipprovider-for-unit-testing 0 Structuring Custom ASP.NET MembershipProvider for Unit Testing Amadiere 2009-10-12T18:53:47Z 2009-10-12T19:13:51Z <p>I'm working on an MVC project at the moment with a semi-TDD approach to the development. I want to continue with this approach, but I'm starting to have doubts over a decision I've made when structuring my code. And before the code base gets big, I'm having thoughts about refactoring(!)</p> <p>I currently have a number of classes:</p> <ul> <li><strong>IUserRepository</strong></li> <li><strong>UserRepository</strong> (which interacts with a LINQ.dbml and SQL Server persistence layer)</li> <li><p><strong>FakeUserRepository</strong> (which generates some test data for me and allows me to faff about with).</p></li> <li><p><strong>UserService</strong> This acts as a layer for as much of the business logic to go into as I can.</p></li> <li><strong>CustomMembershipProvider</strong> Barebones class that for the most part, simply calls a single method from the UserService.</li> <li><strong>CustomMembershipUser</strong></li> </ul> <p>(I plan to implement CustomProfileProvider, and if needed CustomRoleProvider in the very near future)</p> <p>This works OK for the main part, however I'm starting to doubt its the greatest approach. Currently my CustomMembershipProvider is simply a one-line pointer to UserService almost 99% of the time. And the time its not, I'm thinking "shouldn't I be unit testing this..?".</p> <p>I was initially <a href="http://stackoverflow.com/questions/1017996/how-to-unit-test-asp-net-membership">put off leaving Membership as the core place for the code</a>, and instead create a Service Layer for this purpose. However, I'm starting to believe my fears may be misplaced now, and it would indeed be beneficial for it to be there (it would remove at least one layer from the equation!). One of my big worries was the inability to fully unit test the Membership code if I didn't break it into the Service Layer. This doesn't seem to be a great problem as I may be able to simply <a href="http://stackoverflow.com/questions/1081146/testing-membership-provider-without-asp-net">add some config lines to the App.config</a> and away we go...</p> <p>Currently I'm in favour of ditching the Service layer and making things (theoretically) easier for me (as the way I see it, the MembershipProvider is effectively a service). Has anyone had any experiences or thoughts about a way forward? (before I procrastinate into nothingness) :)</p> http://stackoverflow.com/questions/1551503/dependency-injection-and-asp-net-membership-providers 1 Dependency injection and ASP.Net Membership Providers Diago 2009-10-11T19:17:54Z 2009-10-12T00:02:43Z <p>I am in the process of creating a custom membership provider for an ASP.Net MVC website. The provider is being created as a separate class as part of a bigger library. There is a need for the back-end data store to be flexible as it could be an Xml File or SQL database. My initial thought was to create an interface for the data store and inject this into provider using dependency injection.</p> <p>The end result is required is that a developer can inherit the data store interface and provide the required methods to update the data, which will then be used by the custom membership providers.</p> <p>However through my own lack of skill I can't figure out how to inject the class into the membership provider when adding it to the website? What needs to be done to link the data store to the provider? What would be the simplest way to enable this in the website?</p> http://stackoverflow.com/questions/1158286/activedirectorymembershipprovider-configuration-duplicate-name-exists-on-the-net 0 ActiveDirectoryMembershipProvider configuration: duplicate name exists on the network pablo 2009-07-21T09:59:36Z 2009-10-09T21:00:03Z <p>Hi all,</p> <p>I am trying to put a AD MembershipProvider to work but I am getting a very strange error: </p> <p>"Parser Error Message: You were not connected because a duplicate name exists on the network. Go to System in Control Panel to change the computer name and try again."</p> <p>Has anyone seen this? Obviously there are no other computers with clashing hostnames in my office (besides, I have tried renaming the pc to obscure names).</p> <p>Here is my code:</p> <p>login.aspx: Please log in: Welcome </p> <p>default.aspx Hello world!</p> <p>web.config </p> <pre><code>&lt;membership defaultProvider="AspNetActiveDirectoryMembershipProvider"&gt; &lt;providers&gt; &lt;add name="AspNetActiveDirectoryMembershipProvider" type="System.Web.Security.ActiveDirectoryMembershipProvider" connectionUsername="domain\useraccount" connectionPassword="password" attributeMapUsername="sAMAccountName" connectionStringName="ADService"&gt;&lt;/add&gt; &lt;/providers&gt; &lt;/membership&gt; &lt;authentication mode="Forms"&gt; &lt;forms loginUrl="login.aspx" protection="All" timeout="30" name="miBenefitsAdminToolCookie" path="/" requireSSL="false" slidingExpiration="true" defaultUrl="Default.aspx" cookieless="UseCookies" enableCrossAppRedirects="false"/&gt; &lt;/authentication&gt; &lt;authorization&gt; &lt;deny users="?" /&gt; &lt;allow users="*" /&gt; &lt;/authorization&gt; </code></pre> <p>Am I doing anything wrong???</p> http://stackoverflow.com/questions/1537471/multiple-membershipprovider-for-one-application 0 Multiple Membershipprovider for one application Mathias Fritsch 2009-10-08T12:21:16Z 2009-10-08T12:58:18Z <p>I have a site that uses the SqlMembershiprovider. Its is a webshop. The user logs on with his username and password there.</p> <p>Apart from that there is controller that is responsible for displaying delivery details for orders, that are imported from another system. These orders have no connection to users in the membershipsystem. To display delivery details you have to give the ordernumber and a token that is printed on the invoice.</p> <p>To allow access I would like to implement a custom membershiprovider that is used only for this single controller. Is it feasible to use 2 different providers for one application?</p> <p><strong>EDIT</strong></p> <p>There are a couple of pages that the user can access once he provided the ordernumber and token.</p> http://stackoverflow.com/questions/1527854/asp-net-mvc-how-can-i-get-user-roles-without-knowing-these-roles 2 Asp.net MVC - How can I get user roles without knowing these roles? AndreMiranda 2009-10-06T20:13:22Z 2009-10-06T23:54:26Z <p>Hi!</p> <p>I'm working on this project that an admin user can create some User's Groups that will be working as the project roles.</p> <p>So, the admin will create a User Group named "SuperAdmin" and will select in a dropdownlist the users that will be part of this group.</p> <p>I've worked before in a solution using RoleProvider and using Controller's Attibutes, but in that occasion I created all the groups and set manually in the Controller, like:</p> <pre><code>[Access(Roles = "SuperAdmin")] public UserController : Controller { } </code></pre> <p>In the example above I know that the group is named "SuperAdmin". But, now, in this new project, I don't know what groups an admin user will create.</p> <p>So how can I get all roles that a user will be allowed to access dynamically?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1503277/can-i-change-membership-provider-getallusers-method 0 can i change membership provider GetAllUsers method? Tones 2009-10-01T11:06:21Z 2009-10-01T12:47:05Z <p>Hi i am using vb.net and the .net membership provider.</p> <p>i want to bring back a gridview with user account information, like GetAllUsers() does. However i want to only bring back users with certain profile information, that will be users whos profile information matches the selected value in a dropdownlist on the same page. I am using profile provider to record just one extra piece of user information.</p> <p>Can i change or override the GetAllUsers method for this? Adding an extra parameter so its GetAllUsers by Profile. Membership has a FindUsersByName method, i want to do something similar with users by Profile.</p> <p>I am very much a noob with .net programming so i hope i have explained this ok.</p> http://stackoverflow.com/questions/1437584/sharepoint-forms-authentication-provider-name-prefix-on-username 1 SharePoint Forms Authentication Provider Name Prefix on Username Michael Edwards 2009-09-17T08:53:13Z 2009-09-18T05:20:28Z <p>I have setup a SharePoint site with forms authentication and My Sites. The users username displays correctly on the main site collection, however whent he user creates a My Site the user is always referred to as : for example it might be:</p> <p>sqlMembershipProvider:testuser</p> <p>This can be seen in this image:</p> <p><a href="http://img141.imageshack.us/img141/464/mysite.jpg" rel="nofollow">http://img141.imageshack.us/img141/464/mysite.jpg</a></p> <p>How do I remove the sqlMemberProvider from the users visible name?</p> http://stackoverflow.com/questions/1054394/encrypt-decrypt-password-usage-in-a-custom-membershipprovider 0 Encrypt/Decrypt password usage in a custom MembershipProvider? Shimmy 2009-06-28T06:28:26Z 2009-09-18T00:38:58Z <p>Hi folks!</p> <p>I implemented a custom membership provider. I've also implemented my custom AES Encryption/Decryption overriding the abstract EncryptPassword/DecryptPassword of the MembershipProvider.</p> <p>however, when I trigger ValidateUser, the password is not automatically converted, am I missing something?</p> <p>Is it supposed to be called automatically or I have to call this method from my code?</p> http://stackoverflow.com/questions/1432508/programmatically-adding-a-membership-provider 0 Programmatically adding a Membership Provider shaharmo 2009-09-16T11:55:12Z 2009-09-17T07:01:37Z <p>I have a .Net application that uses an arbitrary number of Membership providers. I will not go into the reasons, but I do not want these to be pre-configured, but I want to create and add them programmatically. Is there anyway to do this? I have no problem creating the providers, but Membership.Providers is readonly, so I can't add them.</p> http://stackoverflow.com/questions/159875/sqlmembershipprovider-initialize-method-not-being-called 0 SqlMembershipProvider initialize method not being called Addi 2008-10-01T21:36:15Z 2009-09-16T23:54:54Z <p>I have done a custom implementation of MembershipProvider but for some reason the initialize method is not being invoked and thus my provider is not setting up properly from the config parameters, who invokes it in the first place and how do i get it to work.</p> http://stackoverflow.com/questions/1417888/net-mvc-user-details-in-controller-ctor 0 .NET MVC user details in Controller CTOR Jan de Jager 2009-09-13T14:34:45Z 2009-09-13T16:19:25Z <p>I would like to find a way to use custom User provider within a controllers ctor in order to not have to get the user on every method (dirty)..</p> <p>This is what is in my ctor but keeps returning null?</p> <pre><code>Resource oResource; public EntityController() { try { DataEntities oEntities = new DataEntities(); oResource = oEntities.Resources.Where(c =&gt; c.user == User.Identity.Name).First(); } catch { oResource = new Resource(); } } </code></pre> http://stackoverflow.com/questions/884317/asp-net-membership-provider-validate-hashed-security-question-answer 1 ASP.NET Membership Provider - Validate Hashed Security Question/Answer DannyD 2009-05-19T18:25:22Z 2009-08-23T15:08:15Z <p>On a page I'm adding retrieve forgotten USERNAME</p> <p>Step 1) Enter email address (Get account by email)</p> <p>Step 2) Verify Security Question (they provide answer and I validate it)</p> <p>Step 3) Send them an email with username</p> <p>Step 2 is where I'm stuck. How do I validate the answer with what's stored in the database?</p> <p>All values are hashed.</p> <p>I see other questions posted similar to this but they don't answer the question, at least not clearly.</p> http://stackoverflow.com/questions/748320/aspnetsqlmembershipprovider-and-passwordrecovery-control 0 AspNetSqlMembershipProvider and PasswordRecovery Control test 2009-04-14T16:11:15Z 2009-08-19T17:00:02Z <p>Hi,</p> <p>My scenario is I have a asp.net 2.0 application web application which had the AspNetSqlMembershipProvider properties as: enablePasswordRetrieval="false" and passwordFormat="Hashed"</p> <p>But now the need has risen to store user's passwords unencrypted as clear text and display them to Superusers. I have done this by changing the AspNetSqlMembershipProvider properties to: enablePasswordRetrieval="true" and passwordFormat="Clear"</p> <p>The problem is the way the PasswordRecovery control behaves. From what I have read it checks the properties of the AspNetSqlMembershipProvider tag if enablePasswordRetrieval="true" and passwordFormat="Clear" it will attempt to retrieve the password this is causing a problem when the password is effectively still stored as a hashed one. Is there any way of forcing the PasswordRecovery control to reset not retrieve the password when AspNetSqlMembershipProvider properties are enablePasswordRetrieval="true" and passwordFormat="Clear"?</p> <p>Sorry for the long winded explanation, all help / pointers very much appreciated as always. Thank you.</p> http://stackoverflow.com/questions/1297534/how-do-i-manually-set-a-users-role-in-asp-net-mvc 2 How do I manually set a user's role in ASP.NET MVC? colinodell 2009-08-19T02:25:29Z 2009-08-19T03:06:00Z <p>This project I'm working on requires me to keep a local db of admin users and use an external db for regular users. Anyone who passes authentication in the admin db should be assigned the 'admin' role, and anyone authenticated through the other db will always be assigned a 'user' role.</p> <p>Can I manually assign these roles? I don't need the complexity of a Role Provider or anything, since I'm only using these two roles which will ALWAYS be based on which db they authenticate with.</p> <p>It would be a HUGE help if you could provide sample code or a link to some documentation. Thanks!</p> <p><strong>EDIT:</strong></p> <p>Currently I am not using the role provider and creating one seems like a hassle. I know its not 'best-practice', but I only need to assign 1 of 2 roles during login (this will never change). It also doesn't make sense to store role information in the database, since users are already separated into 2 dbs by their role.</p> <p>Here's some pseudo-code:</p> <pre><code>if (AdminDB.ValidateUser(username,password)==true) { SetAuthCookie(username); AssociateUserWithRole(username, 'admin'); } elseif (UserDB.ValidateUser(username,password)==true) { SetAuthCookie(username); AssociateUserWithRole(username, 'user'); } else { // Login failed. } </code></pre> <p>Its the 'ThisSession.AssociateUserWithRole' part I don't know. Basically, one the user is authenticated, I need to tell .NET which role the user belongs to.</p> http://stackoverflow.com/questions/1296406/integrating-2-different-user-dbs-into-a-single-asp-net-mvc-membersip-provider 0 Integrating 2 different user dbs into a single ASP.NET MVC membersip provider? colinodell 2009-08-18T20:45:52Z 2009-08-18T22:56:54Z <p>I'm working on a project that needs to authenticate users based on records in two different databases. All administrators are stored locally and require full functionality to manage their accounts (reset password, etc). Regular users are authenticated against a different database used by another web app, so I only need to check that their credentials are correct.</p> <p>After entering their username/pass at the logon screen, my app should check if they exist in the local admins table. If so, they are given the role of 'admin' and allowed access. If not, it should then check the other app's user table and give them a 'user' role if successful.</p> <p>The project is basically a large online book. Users simply need authentication to view it, rate the sections, and bookmark pages. The rating/bookmark data will be associated with their unique id. All user management is handled in the external app. Admins, however, will only be able to view/edit the pages and will NOT be rating/bookmarking things. Their accounts will be managed with this admin area.</p> <p>What is the best way to accomplish this in a .NET MVC application? By 'this', I mean integrating the logon/authentication system with both and assigning them a role based on which database confirms their credentials.</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1290482/login-authentication-system-c-net 0 login authentication system c# .net raklos 2009-08-17T21:11:56Z 2009-08-18T07:19:24Z <p>I have a simple site with a simple db. i want the ability to have some sort of login system. there will be 2 types of user: Admins and Non-Admins</p> <p>How can i easily create a login system using my existing database. i have read around using membership providers and using the tool aspnet_regsql.exe but dont know too much.</p> <p>i'm working in c# .net 2.0.</p> <p>any links/tutorials will be useful</p> <p>thanks</p> http://stackoverflow.com/questions/1288248/asp-net-custom-membership-provider-isonline-property 0 asp.net custom membership provider: IsOnline property Goran 2009-08-17T14:28:17Z 2009-08-17T14:33:48Z <p>When implementing a custom membership provider I see that the underlying data model has ISONLINE column in the USER table, as described here: <a href="http://msdn.microsoft.com/en-us/library/6tc47t75.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/6tc47t75.aspx</a></p> <p><strong>Question</strong>: When is this field actually updated in the database? In the sample implementation MSDN gave, there is no updating of this column, and <em>IsOnline</em> property is calculated as:</p> <pre><code>return (now - userIsOnlineTimeWindow &gt; LastActivityDateTime ? false:true); </code></pre> <p>So what is the purpose of ISONLINE column in the USER table if it's never updated??? Or I am missing out on something???</p> <p>Thanks</p> http://stackoverflow.com/questions/1286422/asp-net-membership-provider-tool 0 ASP.NET Membership provider Tool JMSA 2009-08-17T06:24:44Z 2009-08-17T12:05:23Z <p>Is there any tool to configure membership providers in Web.config file from within VS2005?</p> <p>If yes, then How to use that?</p> <p>ASP.NET config tool only adds a provider but don't let it configure.</p> http://stackoverflow.com/questions/822969/how-to-use-secret-answer-in-net-with-membership-provider 0 How to use Secret Answer in .NET with Membership.Provider Al Katawazi 2009-05-05T01:56:08Z 2009-08-17T11:16:47Z <p>I am using the Membership.Provider for security in my MVC Application. I have a forgot password page that asks for your username, and then gives you the secret question on file. My question is how to a check the secret answer against what is on file. I can't seem to find any method that does that besides </p> <pre><code>Membership.Provider.ResetPassword(userName, secretAnswer) </code></pre> <p>which basically approves anything I type in. </p> http://stackoverflow.com/questions/1275508/membership-createuser-issue 2 Membership.CreateUser issue Jason Kealey 2009-08-14T00:58:18Z 2009-08-14T01:57:52Z <p>There is an issue reported here <a href="http://stackoverflow.com/questions/481416/asp-net-membership-issues-with-registration">http://stackoverflow.com/questions/481416/asp-net-membership-issues-with-registration</a> which summarizes a situation I am experiencing. I'm not sure I understand the claimed solution. </p> <p>Simply put, after invoking this line: </p> <pre><code>MembershipUser user = Membership.CreateUser(username, password, email, question, answer, true, out status); </code></pre> <p>I run into a situation where </p> <pre><code>status != MembershipCreateStatus.Success || user == null </code></pre> <p>yet entries are added to the tables: aspnet Users and aspnet Membership. </p> <p>Here is what I have in my web.config</p> <pre><code> passwordStrengthRegularExpression="" minRequiredPasswordLength="4" minRequiredNonalphanumericCharacters="0" </code></pre> <p>Can someone enlighten me on how to reproduce this issue so that I can fix the related issue in my code?</p> http://stackoverflow.com/questions/1208041/membership-providers-and-hipaa-compliance 8 Membership Providers and HIPAA Compliance CptSkippy 2009-07-30T17:19:22Z 2009-07-30T20:22:17Z <p>Does anyone know if the provided SQL and Active Directory Membership Providers in ASP.NET 2.0+ are HIPAA compliant?</p> <p>Clarification:</p> <p>I understand that HIPAA mandates patient information be secured and that certain policies be put in place to secure access to that information. Can Microsoft's SQL and AD Membership Providers be used for handling the authentication of users accessing this information? I expect there to be some policies that need to be established like password length and complexity but is there anything inherit about the way they store information that would invalidate them for the purposes of authorization? Any gotchas or things to look out for?</p> http://stackoverflow.com/questions/1202937/asp-net-custom-membership-provider-add-user-to-roles 0 ASP.NET Custom Membership Provider - Add User to Roles Petezah 2009-07-29T20:47:32Z 2009-07-29T20:56:15Z <p>I'm trying to implement a custom membership provider in my asp.net web app. The problem is that whenever I call the "Roles.AddUserToRole" method it writes to the default membership db built in asp. The strange thing is that when I call the "Membership.CreateUser" method it writes to my custom membership tables. No sure whats going, any help would be much appreciated.</p> <p>Here a bit of my web.config if this will help:</p> <p>name="" type="System.Web.Security.SqlMembershipProvider" connectionStringName="" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" applicationName="" requiresUniqueEmail="true" passwordFormat="Hashed"</p> http://stackoverflow.com/questions/910403/asp-net-custom-role-and-membership-provider-loginstatus-control-not-reacting 0 Asp.net: Custom Role and Membership Provider, LoginStatus Control not reacting Solyad 2009-05-26T12:21:26Z 2009-07-29T09:30:46Z <p>Hi All</p> <p>Involved in a project where one half of the team are building the db and web services layer and we are builing a separate, front end, web service consuming site.</p> <p>We are building a custom role and membership provider which will operate via the web services layer.</p> <p>Just doing some early prototyping, setting roles, checking page permissions and seeing if menu items switch off and on depending on the role etc.</p> <p>One strange item has come up. The inbuilt loginview control correctly switches between the LoggedInTemplate and AnonymousTemplate depending on whether someone is logged in or not.</p> <p>However the LoginStatus control does not react at all. It always displays the LoggedOut text.</p> <p>I would have guessed the LoginView and LoginStatus would operate the same i.e. just plumb in the new provider and they would work off of it. </p> <p>Authentication is Forms also of course. </p> <p>Anyone aware of any particular settings to watch for when using the LoginStatus control with custom providers?</p> <p>Thanks</p>