0
votes
0answers
19 views
new DateTime comparison fails due to timezone differences between DLLs
I have a ASP.NET web application that implements a custom Membership Provider. Because the LastLockOutDate property of the MembershipUser cannot be null, but my underlying entity does allow nulls, I …
0
votes
2answers
13 views
ActiveDirectoryMembershipProvider and referential integrity
In the past, when I implemented my own authentication mechanisms I would have a user table with relationships to other tables in my application's MySQL database. However, now that I'm considering …
0
votes
1answer
12 views
membership timeout and session timeout
I need to set memebership timeout to be less than session timeout to avoid using the membership and the login session is expired, this is a problem that i face in my asp.net application that i am …
0
votes
1answer
19 views
ASP.NET membership providers in non-web apps?
Does anyone know if it's possible to use an ASP.NET membership (and role) provider in a non-web app (ie in a desktop C# app)?
Related question -- is there an LDAP membership provider (it looks like …
1
vote
2answers
38 views
With ASP.NET membership, how can I show a 403?
By default, ASP.NET's membership provider redirects to a loginUrl when a user is not authorized to access a protected page.
Is there a way to display a custom 403 error page without redirecting the …
0
votes
1answer
13 views
Membership.GeneratePassword doesn’t conform to numberOfNonAlphaNumericCharacters
I'm using Membership.GeneratePassword(10, 0).
i.e. Number of Non-AlphaNumeric characters should be zero, as per the MSDN defintion: …
3
votes
4answers
66 views
Microsoft Membership Provider Vs Custom Provider Vs Complete Custom Login System
I am currently converting a very old, but working classic ASP site to ASP.Net.
It has a completely custom written user management system. Whilst it works fine, it really needs a refresh as I want it …
0
votes
1answer
18 views
ASP.Net Membership Provider. Impersonation
I have a custom membership/roles provider, due to the nature of the project it will require Admins to login as users while assisting them with querys.
Now, Its easy to re-log the admin in with the …
-1
votes
0answers
44 views
How many control of .net which haven’t events ? [closed]
i knew this is very easy question to ask or getting answer ?
But it is very important to know that,
how many controls is there which have no events in .net?
0
votes
1answer
40 views
If I implement my own CustomPrincipal in asp.net mvc, must I use a Custom ActionFilterAttribute?
If I implement my own CustomPrincipal in asp.net mvc, must I use a Custom ActionFilterAttribute to check for Roles that my users belong to (like this: …
1
vote
1answer
12 views
Why SQL Membership Database tables created by aspnet_regsql have no primary keys
This question is about the tables created by aspnet_regsql for the ASP.NET 2.0 Membership database.
I am incorporating these tables and procs, etc from the database into my application database for …
0
votes
0answers
12 views
Deadlock calling Membership.CreateUser on a Load Test
Hi,
I am getting Sql deadlocks while calling aspnet_Users_CreateUser Api during load test (100+ concurrent users) I have wrapped the createUser, roles.AddUserToRole and another custom mapping …
0
votes
1answer
49 views
Sharing ASP.NET authentication between sites
We are launching a new web site using a sub-domain and need to ensure that users logging in to the original (main domain) site, are also authenticated in the new site.
I believe I need to ensure all …
1
vote
2answers
34 views
Default Membership and User Profiling vs Custom ones.
Hello,
I was just going through the "AccountController.cs" code (the default one which appears when you create a new ASP.NET MVC project). When I tried to compare it to the one that is proposed in my …
1
vote
4answers
50 views
How to get ASP.NET Forms Authentication (using role restrictions) to not redirect to login page.
Does anyone know of a way to get ASP.NET Forms Authentication to not redirect back to the login page if a user is not allowed to visit a certain page or folder based on their role (and perhaps show a …
