membership-provider Questions
3
Solved
I am designing a web application in ASP.NET / C# where each registered user has the ability to add/modify/delete rows based on their user-id.
Take this example:
I am going to edit my route on th...
Fold asked 18/5, 2010 at 9:48
19
Well i have a big problem that i'm trying for days to solve but i could not do it, so i need your help. I have a web application in asp.net 4.0 where i implemented custom membership and role ...
Leda asked 6/12, 2012 at 23:33
2
Solved
I am trying to set and save an email change using within the Membership Provider in ASP.NET MVC 3. I do not know how to properly set and change the email property within the Membership Provider.
M...
Humfried asked 20/4, 2012 at 11:5
10
Solved
I'm building a single page application and experiencing an issue with anti-forgery tokens.
I know why the issue happens I just don't know how to fix it.
I get the error when the following happens...
Bisulcate asked 20/2, 2013 at 0:16
4
Solved
We have implemented a Custom Membership provider and have a change password control on a webpage that uses this provider. The ChangePassword method in this membership provider class checks some bus...
Clearsighted asked 29/12, 2009 at 22:18
1
We have an application that uses ASP.net Membership to provide the basic login mechanisms. It all works fine, but recently we discovered that if you try to go to the login page whilst logged in you...
Mononuclear asked 28/7, 2016 at 15:12
2
Solved
I have an ASP.NET MVC 4 web application. Running locally, it works fine, but on the web host (which uses shared hosting), the logged on user is frequently logged out by being redirected back to the...
Theaterintheround asked 30/4, 2013 at 18:33
4
Solved
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' r...
Harewood asked 19/8, 2009 at 2:25
1
Solved
We have multiple sites running off one instance of sitecore. One of the sites requires the users & roles to be managed through an external back end system and as such, we have configured custom...
Chosen asked 10/5, 2016 at 9:36
1
Solved
I'm trying to implement a custom store for passwords. Before changing a password, I need to check first whether the password has been used last 8 times the user changed the password.
var hashingAl...
Furred asked 29/4, 2016 at 19:13
3
I looked at membership provider documentation and there should be two GetAllUsers method in membership provider (http://msdn.microsoft.com/en-us/library/system.web.security.membership.getallusers )...
Cheesecloth asked 18/5, 2012 at 9:31
4
Solved
Either i am late to the party or i did something wrong. I am working with Visual Studio 2013 and i was trying to use Membership class however, using System.Web.Security; namespace doesn't exist in ...
Tawnyatawsha asked 10/11, 2013 at 6:20
2
Solved
Here is my web.config:
<membership defaultProvider="CustomizedMembershipProvider">
<providers>
<clear />
<add name="CustomizedMembershipProvider"
connectionStringNa...
Diageotropism asked 28/2, 2014 at 14:42
2
Solved
I have an ASP.NET project using SQL Server CE 4.0 with Entity Framework 4.0. It works fine on my local computer.
When I move it to the remote server, however, and try to log in to the admin part o...
Alkyne asked 26/7, 2012 at 21:59
2
Solved
I am trying to configure an ActiveDirectoryMembershipProvider but I keep getting the message "Unable to establish secure connection with the server".
I have seen online at the MSDN website that I...
Transmutation asked 22/7, 2009 at 12:0
6
Solved
How do you guys manage to get the ID of the current user using the ASP.NET Membership Provider? My application is an MVC 3 using Database First approach, so I created my own database and the Member...
Rms asked 31/10, 2012 at 13:27
4
Solved
I am new in ASP.NET MVC4. I am creating a Empty MVC4 Project Template and trying to add ASP.NET Membership Provider into it but i am not understanding how can I do it. I am searching in Google but ...
Kilmarnock asked 10/11, 2012 at 17:52
4
Solved
I have overridden the membership methods to create a custom membership.
In the account model I've overridden the method CreateUser:
public override MembershipUser CreateUser(string username, st...
Winters asked 6/1, 2012 at 15:31
3
Solved
Good morning all,
I am attempting to implement my custom membership and role providers in my web application that I have implemented under the Default Web Site in my instance of IIS 7. My web appl...
Shaky asked 31/5, 2013 at 12:57
1
I'm using ASP.NET Identity as membership system in my project. After creating a user I want to check the result and I return the original IdentityResult errors. How can I change these messages?
Th...
Tavares asked 13/1, 2014 at 10:15
4
Solved
I have this code which gives me a list of all the users by using my membership provider.
var users = Membership.GetAllUsers();
var usernames = new List<string>();
foreach(MembershipUser m...
Supraorbital asked 10/1, 2012 at 19:27
7
Solved
I am using the default sql membership provider with ASP.NET and I would like to provide a page to change the user's username. I believe I am sure I could do this with a custom provider, but can thi...
Ainslee asked 16/6, 2009 at 13:30
3
Solved
When overriding the MembershipProvider and calling it directly, is there a way to fill the NameValueCollection config parameter of the Initialize method without manually looking through the config ...
Achondrite asked 24/10, 2008 at 16:30
2
I create a lot of quick "proof of concept" MVC apps and I actually found the SimpleMembership provider that shipped with the MVC4 templates to be very handy since it gets me up and running with use...
Zedekiah asked 2/12, 2012 at 3:49
6
Solved
Since our website cannot take credit cards directly we are routing the user, with credential and other misc variables, to a 'hosted page' on another site.
To go more in detail, this is how the use...
Complicity asked 18/12, 2013 at 20:38
1 Next >
© 2022 - 2024 — McMap. All rights reserved.