Tagged Questions
The membership tag has no wiki summary.
40
votes
11answers
30k views
How to get current user in Asp.Net MVC
In forms model, I used to get current logged in user by
Page.CurrentUser
How do I get current user inside a controller class in ASP.NET MVC?
16
votes
5answers
9k views
How do you get the UserID of a User object in ASP.Net MVC?
I have some tables that have a uniqueidentifier UserID that relates to aspnet_Users.UserID. When the user submits some data for those tables, since the controller method has an [Authorize] I get a ...
15
votes
8answers
3k views
Why should I Use ASP.NET Membership security model?
I'm updating my website at the moment and figure that if I am to update my login/security mode, now is a good time.
I have looked through the Membership model which is included in ASP.NET but I'm ...
12
votes
5answers
2k views
Is it possible to change the username with the Membership API
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 this ...
11
votes
6answers
6k views
What is default hash algorithm that ASP.NET membership uses?
What is default hash algorithm that ASP.NET membership uses? And how can I change it?
10
votes
3answers
4k views
Using ASP .NET Membership and Profile with MVC, how can I create a user and set it to HttpContext.Current.User?
I implemented a custom Profile object in code as described by Joel here:
http://stackoverflow.com/questions/426609/asp-net-membership-how-to-assign-profile-values
I can't get it to work when I'm ...
10
votes
3answers
5k views
How do I setup a Membership Provider in my existing database using ASP.NET MVC?
For some reason, the idea of setting up Membership in ASP.NET MVC seems really confusing.
Can anyone provide some clear steps to setup the requisite tables, controllers, classes, etc needed to have a ...
10
votes
1answer
2k views
Disabling account lockout with the SqlMembershipProvider
How do I disable the account lockout feature of the SqlMembershipProvider?
The MSDN documentation for the MaxInvalidPasswordAttempts property does not specify how to disable it. If I can't find the ...
10
votes
4answers
6k views
ASP.NET Application to authenticate to Active Directory or SQL via Windows Authentication or Forms Authentication
I am in the process of writing an application that will need multiple forms of authentication.
The application will need to support authentication to Active Directory, but be able to fail back to a ...
9
votes
3answers
866 views
How secure is the ASP.NET Membership framework?
What is the ASP.NET Membership framework's reputation as far as security goes? Are there any typical default configuration settings that are problematic? What best practices are there? Are there any ...
9
votes
3answers
8k views
ASP.NET Active Directory Membership Provider and SQL Profile Provider
I am currently designing a Membership/Profile scheme for a new project I am working on and I was hoping to get some input from others.
The project is a ASP.NET web application and due to the short ...
9
votes
2answers
2k views
How should I implement user membership in my ASP.NET MVC site?
I'm creating an ASP.NET MVC site and I need to implement login and membership functionality.
Is this something where I roll my own? I already have a members table in my database, should I create a ...
7
votes
2answers
544 views
How to log out a user when a session times out or ends
Whats the best way to log out a user when a session ends or expires?
Thanks for any help.
7
votes
4answers
3k views
Admin pages to manage asp.net membership provider & Role management
Are there any open source projects that provide a front end to asp.net membership provider? Something like the one visual studio exposes through it configuration, but one that can be deployed on ...
7
votes
2answers
5k views
“Remember me” with ASP.NET MVC Authentication is not working
I have a standard ASP.NET MVC (RC Refresh) web project, with the standard ASP.NET Membership provider and the Account controller that is included in the project template.
When I check "Remember me" ...
7
votes
5answers
2k views
How can you test if an ASP.NET membership password will meet configured complexity requirements?
I have a ASP.NET page which allows an administrator to change the password for a user. Since the administrator does not know the user's password, I am using the following:
MembershipUser member = ...
6
votes
2answers
568 views
Is Windows Authorization Manager (AzMan) Obsolete? Is it good to use in a new ASP.NET application?
Does anyone use Windows Authorization Manager (AzMan) anymore for "greenfield" projects? If so, are there any benefits to using the technology in an ASP.NET application as a membership/role provider?
6
votes
2answers
3k views
Using one Asp.net Membership database with multiple applications Single Sign On
I have two asp.net applications on one IIS server and I would like to use the same back end asp_security database and membership provider. I've read that all I have to do is reference the same ...
6
votes
3answers
678 views
When using ASP.Net Membership plus an additional table to store user Information, should I link other tables to aspnet_Users or my own Table?
I'm using ASP.Net membership to secure my site and I have a question about how to store extra user information. By googling and reading other questions I think the 3 accepted approaches to storing ...
6
votes
3answers
6k views
How should I implement “Forgot your password” in ASP.NET MVC?
I'm using the standard SqlMembershipProvider that comes with the ASP.NET MVC demo.
I'm interested in implementing a "Forgot your password" link on my site.
What is the correct way for this feature ...
6
votes
4answers
11k views
ASP.NET Membership: how to set the user as logged in
I am trying to get the Membership Provider to work.
So far I have:
<asp:Login ID="Login1" runat="server" OnAuthenticate="Login1_Authenticate">
</asp:Login>
calling :
protected void ...
6
votes
3answers
5k views
Implementing Custom MembershipUser
I am going round in circles and need some help in implementing a Custom MembershipUser so that I can add my own custom Properties to the MembershipUser.
I have been following the example on this ...
6
votes
2answers
2k views
Membership, MembershipProvider and MembershipUser relations in ASP.NET?
I store user data in a MSSQL table called Users. What I want to is to have accessible all user's data for actually logged user (email, address, phone, if the user is subscriber etc.).
I don't want to ...
6
votes
2answers
10k views
using asp.net membership provider how to check if the user is registered or not?
using asp.net and c# membership provider how to check if the user is registered or not?
I want to handle this in code not by using "login status"?
6
votes
8answers
3k views
How do you pass an authenticaticated session between app domains
Lets say that you have websites www.xyz.com and www.abc.com.
Lets say that a user goes to www.abc.com and they get authenticated through the normal ASP .NET membership provider.
Then, from that ...
5
votes
2answers
1k views
How to deny access to a file with ASP.NET web config but not just locally?
I have a problem with ASP.NET web configuration file. I want to deny some users or roles to accessing a specific PDF file. I am using ASP.NET membership and role management system. So I added this ...
5
votes
2answers
749 views
Django - How to save m2m data via post_save signal?
(Django 1.1) I have a Project model that keeps track of its members using a m2m field. It looks like this:
class Project(models.Model):
members = models.ManyToManyField(User)
sales_rep = ...
5
votes
3answers
409 views
ASP.NET MVC custom membership for beginners
I am creating my own website and blog and I want for first time just me in database (my name and password) and maybe later some registration for others but first log in just for me and administration ...
5
votes
2answers
391 views
Millions of anonymous ASP.Net profiles?
UPDATE: I've just realised that we are using Google Mini Search to crawl the website in order for us to support Google Search. This is bound to be creating an anonymous profile for not only each ...
5
votes
3answers
3k views
Membership Generate Password alphanumeric only password?
How can I use Membership.GeneratePassword to return a password that ONLY contains alpha or numeric characters? The default method will only guarantee a minimum and not a maximum number of non ...
5
votes
3answers
6k views
How to create user profiles with PHP and MySQL
I need some help on creating a user profile system. I want it to be like Facebook or Myspace where it has only the username after the address, no question marks or anything, for example, ...
5
votes
5answers
3k views
ASP.Net Store User Data in Auth Cookie
I want to store some data like the user nickname and user ID (table primary key) in the user data section of the auth cookie. The reason I'm doing this is to retain this data when the browser is ...
5
votes
6answers
7k views
How do you programatically end a session in asp.net?
Session.Abandon() doesn't seem to do anything. You would expect the Session_end event to fire when Session.Abandon() is called.
5
votes
2answers
3k views
.NET Membership Create User W/O Question Answer
can someone tell me how I can use the CreateUser method in the Membership class without having to assign a question and answer?
I have disabled it in the web config: ...
5
votes
8answers
17k views
How can I access UserId in ASP.NET Membership without using Membership.GetUser()?
How can I access UserId in ASP.NET Membership without using Membership.GetUser(username) in ASP.NET Web Application Project?
Can UserId be included in Profile namespace next to UserName ...
5
votes
3answers
567 views
ASP.NET Site Maps
Has anyone got experience creating SQL-based ASP.NET site-map providers?
I've got the default XML web.sitemap file working properly with my Menu and SiteMapPath controls. But I'll need a way for the ...
4
votes
1answer
69 views
Which tier of my ASP.NET MVC application should I be checking Membership information?
I have an MVC application which has the (simplified) structure as below (left-to-right)
UI -> CONTROLLERS -> SERVICES -> REPOSITORIES -> DATABASE
We've attempted to keep each layer decoupled from ...
4
votes
2answers
46 views
What is the Best Way to Validated New User after Successful Payment?
I have a member sign-up process which requires a monthly subscription payment. I have a script running which can update my member's database using an IPN script. I am curious about the best way to ...
4
votes
1answer
750 views
SemaphoreFullException when checking user role via ASP.NET membership
I have a page that checks that a user is in a particular role before performing some task, and have had no problem with functionality and have made no obvious related changes to the code in question. ...
4
votes
6answers
425 views
What are the pros and cons using the asp.net membership?
I'm building a new website and a friend suggest to me to use the asp.net membership for the authentication process (login, registration, password recovery, etc..).
I saw that everything is stored in ...
4
votes
4answers
214 views
Understanding python object membership for sets
If I understand correctly, the __cmp__() function of an object is called in order to evaluate all objects in a collection while determining whether an object is a member, or 'in', the collection.
...
4
votes
3answers
894 views
ASP.NET Membership Profile
I want to send out an email to all users where their birthday is today
i am using the built-in asp.net (3.5) membership. All users have a profile (stored in aspnet_Profile) which contains a date/time ...
4
votes
2answers
208 views
Membership and event API? Or should I do it myself?
I've been tasked with setting up a society's website. I'm a full time Django (at al) web developer so I was happy to take on the task.
Going through the specs, they want to control memberships so ...
4
votes
1answer
409 views
ASP.NET ApplicationId
I've read somewhere that ApplicationID is a unique id for a website (iis site path). But I'm still confused. Here are my questions..
When and why do I need this?
I'm trying to implement asp.net ...
4
votes
2answers
568 views
Login fails after upgrade to ASP.net 4.0 from 3.5
I cannot log in using any of the membership accounts using .net 4.0 version of the app. It fails like it's the wrong password, and FailedPasswordAttemptCount is incremented in my_aspnet_membership ...
4
votes
3answers
153 views
Python, concise way to test membership in collection using partial match
What is the pythonic way to test if there is a tuple starting with another tuple in collection? actually, I am really after the index of match, but I can probably figure out from test example
for ...
4
votes
2answers
487 views
ASP.Net MVC Memberships
I want to use the the AuthorizeAttribute to control which users are allowed access to my actions. I just want to clarify that my logic is in order.
I create my own implementation of IPrincipal
I ...
4
votes
4answers
363 views
What restrictions should I impose on usernames
What restrictions should I impose on usernames? why?
What restrictions should I not impose on usernames? why?
P.S. db is via best-practice PDO so no risk of sql injection
Thanks
4
votes
3answers
2k views
Why is ASP.NET accepting externally created session identifiers?
I have an ASP.NET 3.5 Web Site using the standard SQL Membership Provider.
The application has to pass the IBM Rational AppScan before we can push to production.
I am getting the error:
Severity: ...
4
votes
1answer
6k views
in asp.net what sets Request.IsAuthenticated = true [closed]
Possible Duplicate:
asp.net membership IsApproved false but still allowing login
i am having a user register but IsApproved is false but when i check Request.IsAuthenticated it still ...